source: frontend/node_modules/ipaddr.js/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 825 bytes
Line 
1{
2 "name": "ipaddr.js",
3 "description": "A library for manipulating IPv4 and IPv6 addresses in JavaScript.",
4 "version": "2.4.0",
5 "author": "whitequark <whitequark@whitequark.org>",
6 "directories": {
7 "lib": "./lib"
8 },
9 "dependencies": {},
10 "devDependencies": {
11 "eslint": "^9.19.0",
12 "uglify-es": "*"
13 },
14 "scripts": {
15 "lint": "npx eslint lib",
16 "lintfix": "npx eslint --fix lib test",
17 "build": "npx uglifyjs --compress --mangle --wrap=window -o ipaddr.min.js lib/ipaddr.js",
18 "test": "node --test"
19 },
20 "files": [
21 "lib",
22 "ipaddr.min.js"
23 ],
24 "keywords": [
25 "ip",
26 "ipv4",
27 "ipv6"
28 ],
29 "repository": "git://github.com/whitequark/ipaddr.js",
30 "main": "./lib/ipaddr.js",
31 "engines": {
32 "node": ">= 10"
33 },
34 "license": "MIT",
35 "types": "./lib/ipaddr.js.d.ts"
36}
Note: See TracBrowser for help on using the repository browser.