-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 790 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 790 Bytes
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
{
"name": "ctr-ipaddr",
"version": "0.0.8",
"description": "Work with IPv4 addresses",
"author": "Krystian Cieślik",
"license": "MIT",
"homepage": "https://github.com/crabtree/ctr-ipaddr-js#readme",
"bugs": {
"url": "https://github.com/crabtree/ctr-ipaddr-js/issues"
},
"keywords": [
"ipv4",
"netmask",
"ip",
"address",
"subnet",
"cidr"
],
"main": "lib/index.js",
"engines": {
"node": ">= 7.5"
},
"scripts": {
"test": "nyc --reporter=html --reporter=text --reporter=lcov --exclude=**/*.spec.js mocha lib/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crabtree/ctr-ipaddr-js.git"
},
"devDependencies": {
"expect.js": "^0.3.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0"
}
}