You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
857 B
39 lines
857 B
2 years ago
|
{
|
||
|
"name": "ipaddr.js",
|
||
|
"description": "A library for manipulating IPv4 and IPv6 addresses in JavaScript.",
|
||
|
"version": "2.0.1",
|
||
|
"author": "whitequark <whitequark@whitequark.org>",
|
||
|
"directories": {
|
||
|
"lib": "./lib"
|
||
|
},
|
||
|
"dependencies": {},
|
||
|
"devDependencies": {
|
||
|
"eslint": "*",
|
||
|
"mocha": "*",
|
||
|
"uglify-es": "*"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"lint": "npx eslint lib test",
|
||
|
"lintfix": "npx eslint --fix lib test",
|
||
|
"build": "npx uglifyjs --compress --mangle --wrap=window -o ipaddr.min.js lib/ipaddr.js",
|
||
|
"test": "npx _mocha"
|
||
|
},
|
||
|
"files": [
|
||
|
"lib/",
|
||
|
"LICENSE",
|
||
|
"ipaddr.min.js"
|
||
|
],
|
||
|
"keywords": [
|
||
|
"ip",
|
||
|
"ipv4",
|
||
|
"ipv6"
|
||
|
],
|
||
|
"repository": "git://github.com/whitequark/ipaddr.js",
|
||
|
"main": "./lib/ipaddr.js",
|
||
|
"engines": {
|
||
|
"node": ">= 10"
|
||
|
},
|
||
|
"license": "MIT",
|
||
|
"types": "./lib/ipaddr.js.d.ts"
|
||
|
}
|