-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.27 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
46
47
48
49
50
51
52
53
{
"name": "node-ipv4",
"version": "1.1.2",
"description": "A package to calculate subnet masks.",
"author": "Roberto Achar <[email protected]>",
"homepage": "https://github.com/robertoachar/node-ipv4#readme",
"keywords": [
"calculator",
"cidr",
"ip",
"ipaddress",
"ipv4",
"mask",
"net",
"netmask",
"network",
"subnet"
],
"bin": "src/cli/ipv4.js",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"coverage": "jest --colors --coverage",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
"jest": "jest --colors --verbose",
"lint": "eslint src/**/*.js test/**/*.js",
"test": "npm run lint && npm run jest"
},
"repository": {
"type": "git",
"url": "https://github.com/robertoachar/node-ipv4.git"
},
"bugs": {
"url": "https://github.com/robertoachar/node-ipv4/issues"
},
"dependencies": {
"commander": "2.15.1"
},
"devDependencies": {
"@types/jest": "22.2.3",
"coveralls": "3.0.0",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "12.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-prettier": "2.6.0",
"jest": "22.4.3",
"prettier": "1.12.1"
},
"license": "MIT"
}