generated from ni/github-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.5 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.5 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
{
"name": "open-source",
"version": "1.0.0",
"private": true,
"type": "module",
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"check:node": "node scripts/check-node-version.js",
"pretest": "npm run check:node",
"pretest:ci": "npm run check:node",
"verify:docs": "tsx scripts/verify-docs.ts",
"prederive:registry": "npm run check:node",
"pregenerate:summary": "npm run check:node",
"test": "tsx --test scripts/**/*.test.js scripts/*.test.js",
"test:ci": "mkdir -p test-results && tsx --test --test-reporter=junit --test-reporter-destination test-results/node-junit.xml scripts/**/*.test.js scripts/*.test.js",
"derive:registry": "tsx scripts/derive-dispatcher-registry.ts",
"generate:summary": "tsx scripts/generate-ci-summary.ts",
"generate:requirements-docs": "tsx scripts/generate-requirements-docs.ts",
"generate:traceability-matrix": "tsx scripts/generate-traceability-matrix.ts",
"check:traceability": "tsx scripts/check-traceability.ts",
"lint:md": "markdownlint-cli2 README.md \"docs/**/*.md\" \"scripts/**/*.md\"",
"link:check": "linkinator README.md docs scripts --config linkinator.config.json"
},
"dependencies": {
"adm-zip": "^0.5.16",
"glob": "^11.0.3",
"js-yaml": "^4.1.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@types/xml2js": "^0.4.14",
"linkinator": "^6.1.4",
"markdownlint-cli2": "^0.18.1",
"tsx": "^4.20.4",
"typescript": "^5.9.2"
}
}