-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@nictool/dns-nameserver",
"version": "0.7.3",
"description": "DNS Nameserver",
"main": "index.js",
"bin": {},
"type": "module",
"engines": {
"node": ">=14.0"
},
"files": [
"bin",
"lib",
"CHANGELOG.md"
],
"scripts": {
"lint": "npx eslint index.js test",
"lint:fix": "npx eslint --fix index.js test",
"test": "npx mocha",
"versions": "npx dependency-version-checker check",
"versions:fix": "npx dependency-version-checker update"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/NicTool/dns-nameserver.git"
},
"keywords": [
"dns",
"server",
"import",
"nictool"
],
"author": "Matt Simerson <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/NicTool/dns-nameserver/issues"
},
"homepage": "https://github.com/NicTool/dns-nameserver#readme",
"devDependencies": {
"eslint": "^8.57.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.1.0",
"mocha": "^10.8.2"
},
"dependencies": {
"chalk": "^5.3.0",
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.3",
"@nictool/dns-zone": "^1.1.4"
}
}