-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1005 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1005 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-regex-builder",
"version": "0.0.3-0",
"description": "Regular expression builder for validation of IP ranges. Support single IP, wildcards and ranges. IPv4 only.",
"main": "src/index.js",
"keywords": [
"ip",
"regex",
"regexp",
"regular expression",
"regular expression builder",
"ip validation",
"ip wildcards",
"ip ranges",
"ipv4"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"rollup": "^0.63.5",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-uglify": "^4.0.0",
"uglify-js": "^3.4.6"
},
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CubikNeRubik/ip-regex.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CubikNeRubik/ip-regex/issues"
},
"homepage": "https://github.com/CubikNeRubik/ip-regex#readme"
}