-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "zonefile-parser",
"version": "1.0.1",
"description": "zonefile DNS configuration parser",
"main": "fast.js",
"bin": {
"zonefile": "bin/zonefile.js"
},
"scripts": {
"test": "say sorry && exit 1",
"build": "npm-run-all build:*",
"build:small": "pegjs --extra-options '{ \"optimize\": \"size\" }' node_modules/zonefile-pegjs/zonefile.pegjs small.js",
"build:fast": "pegjs --extra-options '{ \"optimize\": \"speed\" }' node_modules/zonefile-pegjs/zonefile.pegjs fast.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tableflip/zonefile-parser.git"
},
"keywords": [
"dns",
"zonefile",
"parser",
"peg",
"soa",
"srv",
"txt"
],
"author": "olizilla <[email protected]> (https://tableflip.io)",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/tableflip/zonefile-parser/issues"
},
"homepage": "https://github.com/tableflip/zonefile-parser#readme",
"dependencies": {},
"devDependencies": {
"npm-run-all": "^1.4.0",
"pegjs": "^0.9.0",
"zonefile-pegjs": "1.0.0"
}
}