-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 741 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "docs-as-code-tools",
"private": true,
"description": "Docs-as-code tooling: custom markdownlint rules and lint/test helpers.",
"scripts": {
"test": "npm run test:rules:coverage",
"test:rules": "node --test test/markdownlint-rules/*.test.js",
"test:rules:coverage": "node --test --experimental-test-coverage --test-coverage-include='markdownlint-rules/**/*.js' --test-coverage-lines=90 --test-coverage-branches=90 --test-coverage-functions=90 test/markdownlint-rules/*.test.js"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.3",
"eslint-plugin-security": "^4.0.0",
"globals": "^17.3.0",
"markdownlint-cli2": "^0.21.0"
},
"overrides": {
"glob": "^13.0.3"
}
}