-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.09 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "study-note",
"version": "0.0.1",
"description": "日常学习笔记",
"main": "index.js",
"scripts": {
"commit": "git add . && git cz"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"git add"
],
"/*.json": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arima-P/study-note.git"
},
"keywords": [
"study",
"note",
"js",
"ts",
"vue",
"react",
"css",
"html"
],
"author": "Arima",
"license": "ISC",
"bugs": {
"url": "https://github.com/Arima-P/study-note/issues"
},
"homepage": "https://github.com/Arima-P/study-note#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
}
}