forked from salieri/IPSubnetCalculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 966 Bytes
/
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
{
"author": "Aleksi Asikainen",
"name": "ip-subnet-calculator",
"description": "Calculate optimal subnet masks for standard and non-standard IP ranges",
"homepage": "https://github.com/franksrevenge/IPSubnetCalculator",
"version": "1.1.8",
"files": [
"lib",
"examples"
],
"main": "lib/ip-subnet-calculator.js",
"keywords": [
"ip",
"subnet",
"network",
"netmask",
"calculator",
"mask"
],
"engines": {
"node": "*"
},
"dependencies": {},
"optionalDependencies": {},
"license": "MIT",
"devDependencies": {
"coveralls": "^2.11.9",
"istanbul": "^0.4.3",
"lodash": "^4.12.0",
"mocha": "^2.4.0",
"mocha-istanbul": "^0.2.0",
"mocha-lcov-reporter": "^1.2.0",
"should": "^8.3.0"
},
"repository": {
"type": "git",
"url": "git://github.com/franksrevenge/IPSubnetCalculator.git"
},
"scripts": {
"test": "mocha"
},
"tonicExampleFilename": "examples/tonic.js"
}