CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json38 linesDownload Raw Back to ipaddr.js
1{2  "name": "ipaddr.js",3  "description": "A library for manipulating IPv4 and IPv6 addresses in JavaScript.",4  "version": "2.2.0",5  "author": "whitequark <whitequark@whitequark.org>",6  "directories": {7    "lib": "./lib"8  },9  "dependencies": {},10  "devDependencies": {11    "eslint": "^8.57.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    "LICENSE",23    "ipaddr.min.js"24  ],25  "keywords": [26    "ip",27    "ipv4",28    "ipv6"29  ],30  "repository": "git://github.com/whitequark/ipaddr.js",31  "main": "./lib/ipaddr.js",32  "engines": {33    "node": ">= 10"34  },35  "license": "MIT",36  "types": "./lib/ipaddr.js.d.ts"37}38