-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.48 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.48 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
60
61
62
{
"name": "@nictool/dns-zone",
"version": "1.1.7",
"description": "DNS Zone",
"main": "index.js",
"type": "module",
"bin": {
"dns-zone": "./bin/dns-zone.js"
},
"files": [
"bin",
"lib",
"CHANGELOG.md"
],
"scripts": {
"lint": "npx eslint *.js lib test",
"lint:fix": "npx eslint --fix *.js lib test",
"prettier": "npx prettier --ignore-path .gitignore --check .",
"prettier:fix": "npx prettier --ignore-path .gitignore --write .",
"test": "npx mocha",
"versions": "npx dependency-version-checker check",
"versions:fix": "npx dependency-version-checker update",
"format": "npm run prettier:fix && npm run lint:fix"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/NicTool/dns-zone.git"
},
"keywords": [
"dns",
"zone",
"convert",
"import",
"export",
"validator",
"validation",
"nictool"
],
"author": "Matt Simerson <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/NicTool/dns-zone/issues"
},
"homepage": "https://github.com/NicTool/dns-zone#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"mocha": "11.7.5"
},
"dependencies": {
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.4",
"@nictool/dns-resource-record": "^1.3.1"
},
"prettier": {
"printWidth": 110,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
}