-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
47 lines (47 loc) · 926 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
44
45
46
47
{
"name": "ip-cidr",
"version": "3.0.6",
"description": "Module for working with CIDR (v4, v6)",
"main": "./index.js",
"types": "./index.d.ts",
"author": {
"name": "Alexander Balasyan",
"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"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && npm run build && git add ./dist/*"
}
},
"dependencies": {
"ip-address": "^7.1.0",
"jsbn": "^1.1.0"
},
"devDependencies": {
"@types/jsbn": "^1.2.29",
"browserify": "^14.5.0",
"chai": "^3.5.0",
"husky": "^4.2.3",
"mocha": "^9.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ortexx/ip-cidr"
},
"engines": {
"node": ">=10.0.0"
}
}