-
Notifications
You must be signed in to change notification settings - Fork 165
/
package.json
43 lines (43 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
{
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"commit": "commit",
"lint:md": "lint-md ./docs/",
"lint:js": "eslint --fix .",
"doc:dev": "vuepress dev docs",
"doc:build": "vuepress build docs",
"doc:deploy": "bash ./deploy.sh",
"update:deps": "pnpm update --latest",
"prepare": "is-ci || husky install"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@vssue/vuepress-plugin-vssue": "^1.4.8",
"babel-jest": "^27.5.1",
"eslint": "^8.14.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"jest": "^27.5.1",
"lint-md-cli": "^0.1.2",
"lint-staged": "^12.4.1",
"vuepress": "^1.9.7",
"vuepress-plugin-baidu-google-analytics": "^1.0.2",
"vuepress-plugin-rss-support": "^1.1.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}