forked from NicTool/dns-nameserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.44 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.44 KB
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
52
53
54
55
56
57
58
59
{
"name": "@nictool/dns-nameserver",
"version": "0.7.4",
"description": "DNS Nameserver",
"main": "index.js",
"bin": {},
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"files": [
"bin",
"lib",
"CHANGELOG.md"
],
"scripts": {
"lint": "npx eslint index.js lib test",
"lint:fix": "npx eslint --fix index.js lib test",
"test": "node --test",
"versions": "npx npm-dep-mgr check",
"versions:fix": "npx npm-dep-mgr update",
"test:coverage": "npx c8 --reporter=text --reporter=text-summary npm test",
"format": "npm run prettier:fix && npm run lint:fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/NicTool/dns-nameserver.git"
},
"keywords": [
"dns",
"server",
"import",
"nictool"
],
"author": "Matt Simerson <matt@tnpi.net>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/NicTool/dns-nameserver/issues"
},
"homepage": "https://github.com/NicTool/dns-nameserver#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.1.0",
"globals": "^17.4.0"
},
"dependencies": {
"@nictool/dns-zone": "^1.1.7",
"chalk": "^5.6.2",
"command-line-args": "^6.0.2",
"command-line-usage": "^7.0.4"
},
"prettier": {
"printWidth": 90,
"singleQuote": true,
"semi": false
}
}