-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 1022 Bytes
/
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
{
"author": "Carlo Corradini <[email protected]>",
"license": "MIT",
"private": true,
"homepage": "https://github.com/carlocorradini/inline#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/carlocorradini/inline.git"
},
"bugs": {
"url": "https://github.com/carlocorradini/inline/issues"
},
"scripts": {
"check": "npx npm-run-all --npm-path npm --serial check:*",
"check:format": "npx prettier --check .",
"check:markdown": "npx markdownlint \"**/*.md\"",
"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": {
"@commitlint/cli": "^17.4.1",
"@commitlint/config-conventional": "^17.4.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"markdownlint-cli": "^0.33.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"prettier-plugin-sh": "^0.12.8"
}
}