-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 957 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
33
34
{
"name": "masterbook",
"version": "1.0.0",
"description": "SW Craftsmanship Dojo Masterbook",
"license": "AGPLv3",
"author": "",
"main": "index.js",
"scripts": {
"staged:lint": "lint-staged --relative --verbose",
"precommit": "npm-run-all -p staged:lint",
"prepare": "husky install",
"prettier:verify": "prettier --check \"*.{js,ts,css,scss,md,html,yml,yaml,json}\"",
"prettier:verifyfile": "prettier --check",
"prettier:fixAll": "prettier --write '**/*.md'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"*.{md,json,js}": [
"npm run prettier:verifyfile"
],
"package.json": [
"sort-package-json"
]
},
"devDependencies": {
"@commitlint/config-conventional": "^17.7.0",
"commitlint": "^17.7.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"sort-package-json": "^2.5.1"
}
}