-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 988 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
{
"name": "castella",
"private": true,
"version": "1.0.0",
"description": "CSS in JS library for React",
"main": "index.js",
"scripts": {
"commit": "cz",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "uhyo <uhyo@uhy.ooo>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/uhyo/castella.git"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,css}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}