-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.32 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
52
53
{
"name": "@nictool/dns-resource-record",
"version": "1.2.2",
"description": "DNS Resource Records",
"main": "index.js",
"file": [
"lib",
"rr",
"CHANGELOG.md",
"rr.js"
],
"type": "module",
"scripts": {
"format:check": "npm run prettier; npm run lint",
"format": "npm run prettier -- --write && npm run lint --fix",
"lint": "npx eslint@9 **/*.js",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier --ignore-path .gitignore --check .",
"prettier:fix": "npx prettier --ignore-path .gitignore --write .",
"test": "npx mocha",
"versions": "npx dependency-version-checker check",
"watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/NicTool/dns-resource-record.git"
},
"keywords": [
"DNS",
"resource",
"record",
"validator",
"validation",
"import",
"export",
"BIND",
"djbdns",
"tinydns",
"nictool"
],
"author": "Matt Simerson <matt@tnpi.net>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/NicTool/dns-resource-record/issues"
},
"homepage": "https://github.com/NicTool/dns-resource-record#readme",
"devDependencies": {
"@eslint/js": "^9.15.0",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"mocha": "^10.8.2"
}
}