-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.32 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@nictool/dns-resource-record",
"version": "1.9.0",
"description": "DNS Resource Records",
"main": "index.js",
"exports": {
".": {
"browser": "./dist/dns-rr.min.js",
"import": "./index.js",
"require": "./dist/dns-rr.cjs",
"default": "./index.js"
}
},
"files": [
"dist",
"lib",
"rr",
"CHANGELOG.md",
"rr.js"
],
"type": "module",
"scripts": {
"build": "npm run build:browser && npm run build:cjs",
"build:browser": "npx rollup -i index.js -o dist/dns-rr.js -f es && npx esbuild dist/dns-rr.js --minify --sourcemap --outfile=dist/dns-rr.min.js && rm dist/dns-rr.js",
"build:cjs": "npx rollup -i index.js -o dist/dns-rr.cjs -f cjs --exports named",
"clean": "rm -rf coverage dist node_modules package-lock.json",
"format:check": "npm run prettier; npm run lint",
"format": "npm run prettier -- --write && npm run lint:fix",
"lint": "npx eslint **/*.js --no-warn-ignored",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier --check .",
"prettier:fix": "npx prettier --write .",
"test": "node --test",
"test:coverage": "node --test --experimental-test-coverage",
"test:coverage:lcov": "mkdir -p coverage && node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/lcov.info",
"versions": "npx npm-dep-mgr check",
"versions:fix": "npx npm-dep-mgr update",
"watch": "node --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",
"engines": {
"node": ">=20"
},
"browserslist": [
"chrome >= 74",
"firefox >= 90",
"safari >= 14.1",
"edge >= 79"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.8.0",
"globals": "^17.8.0"
},
"prettier": {
"printWidth": 110,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
}