-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 KB
/
package.json
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": "rangecalc",
"version": "1.6.3",
"description": "Find the CIDR range of a set of IP addresses.",
"main": "./lib/rangecalc.js",
"bin": {
"rangecalc": "./bin/rangecalc-cli.js"
},
"scripts": {
"test": "nyc mocha test",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"docs": "documentation build lib/rangecalc.js -f html -o docs",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/clpo13/rangecalc-js.git"
},
"keywords": [
"ip",
"ipv4",
"cidr"
],
"author": "Cody Logan <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/clpo13/rangecalc-js/issues"
},
"homepage": "https://github.com/clpo13/rangecalc-js#readme",
"devDependencies": {
"codecov": "^3.8.3",
"documentation": "^14.0.2",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^9.1.3",
"mocha-eslint": "^7.0.0",
"nyc": "^15.1.0"
},
"dependencies": {
"ipaddr.js": "^2.0.1"
}
}