forked from ortexx/ip-cidr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 733 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 733 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
36
37
38
39
{
"name": "ip-cidr",
"version": "1.1.1",
"description": "Module for working with CIDR (v4, v6)",
"main": "./index.js",
"author": {
"name": "Balasyan Alexandr",
"email": "mywebstreet@gmail.com"
},
"keywords": [
"ip",
"cidr",
"range",
"from",
"to",
"array"
],
"license": "MIT",
"scripts": {
"test": "mocha",
"build": "browserify ./ip-cidr.js > ./dist/ip-cidr.js"
},
"dependencies": {
"ip-address": "^5.8.6",
"jsbn": "^0.1.0"
},
"devDependencies": {
"browserify": "^14.4.0",
"mocha": "^3.2.0",
"chai": "^3.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ortexx/ip-cidr"
},
"engines": {
"node": ">=5.0.0"
}
}