forked from beaugunderson/ip-address
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "ip-address",
"description": "A library for parsing IPv4 and IPv6 IP addresses in node and the browser.",
"keywords": [
"ipv6",
"ipv4",
"browser",
"validation"
],
"version": "5.8.9",
"author": "Beau Gunderson <beau@beaugunderson.com> (https://beaugunderson.com/)",
"license": "MIT",
"main": "ip-address.js",
"scripts": {
"test": "mocha -R spec",
"docs": "documentation --github --output docs --format html ./ip-address.js",
"prepublish": "browserify ./ip-address-globals.js > ./dist/ip-address-globals.js"
},
"engines": {
"node": ">= 0.10"
},
"repository": {
"type": "git",
"url": "git://github.com/beaugunderson/ip-address.git"
},
"dependencies": {
"jsbn": "0.1.0",
"lodash.find": "^4.6.0",
"lodash.max": "^4.0.1",
"lodash.merge": "^4.6.0",
"lodash.padstart": "^4.6.1",
"lodash.repeat": "^4.1.0",
"sprintf-js": "1.0.3",
"util-deprecate": "^1.0.2"
},
"devDependencies": {
"browserify": "^13.1.1",
"chai": "^3.5.0",
"codecov.io": "^0.1.6",
"documentation": "^4.0.0-beta9",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mochify": "^2.18.1"
}
}