forked from open-telemetry/semantic-conventions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 668 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"scripts": {
"_check:format": "npx prettier --check .",
"_check:format:any": "npx prettier --check --ignore-path ''",
"check": "make check",
"check:format": "npm run _check:format || (echo '[help] Run: npm run format'; exit 1)",
"fix": "make fix",
"fix:format": "npm run _check:format -- --write",
"test": "npm run check"
},
"devDependencies": {
"gulp": "^4.0.2",
"js-yaml": "^4.1.0",
"markdown-link-check": "^3.11.2",
"markdown-toc": "^1.2.0",
"markdownlint": "^0.29.0",
"markdownlint-cli": "0.31.0",
"prettier": "^3.0.0",
"through2": "^4.0.2"
},
"prettier": {
"proseWrap": "preserve"
}
}