-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
36 lines (36 loc) · 1.23 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
{
"author": "Carlo Corradini <[email protected]>",
"license": "MIT",
"private": true,
"homepage": "https://github.com/carlocorradini/node_exporter_installer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/carlocorradini/node_exporter_installer.git"
},
"bugs": {
"url": "https://github.com/carlocorradini/node_exporter_installer/issues"
},
"scripts": {
"check": "npx npm-run-all --npm-path npm --serial check:*",
"check:format": "npx prettier --check .",
"check:markdown": "npx markdownlint \"**/*.md\"",
"check:script": "npx shellcheck ./install.sh",
"check:spell": "npx cspell lint --config cspell.json --no-progress --show-context \"**\"",
"fix": "npx npm-run-all --npm-path npm --serial fix:*",
"fix:format": "npx prettier --write .",
"fix:markdown": "npx markdownlint --fix \"**/*.md\"",
"prepare": "npx husky install"
},
"devDependencies": {
"@cspell/dict-npm": "^5.0.13",
"@cspell/dict-shell": "^1.0.6",
"cspell": "^8.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"markdownlint-cli": "^0.34.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"prettier-plugin-sh": "^0.13.1",
"shellcheck": "^2.2.0"
}
}