-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "senchou",
"author": "Jake Hamilton <[email protected]>",
"description": "",
"keywords": [],
"license": "",
"private": true,
"scripts": {
"bootstrap": "titan install --no-save",
"bootstrap:changed": "titan install --changed --no-save",
"build": "titan run build --ordered",
"build:changed": "titan run build --changed --ordered",
"publish": "titan publish",
"version": "titan version"
},
"titan": {
"packages": [
"./packages"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{md,json,ts,tsx,js,jsx,mjs}": "prettier --write"
},
"prettier": {
"tabWidth": 4,
"useTabs": true
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@jakehamilton/titan": "^5.5.5",
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1"
}
}