-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.15 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
55
56
{
"name": "axb-lint",
"version": "0.0.1",
"main": "bin/index.js",
"files": [
"bin",
"lib"
],
"bin": {
"axblint": "bin/index.js"
},
"scripts": {
"format": "prettier --write ."
},
"author": {
"name": "axuebin",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:axuebin/axb-lint.git"
},
"license": "ISC",
"dependencies": {
"chalk": "^4.1.0",
"commander": "^7.0.0",
"cross-spawn": "^7.0.3",
"inquirer": "^7.3.3"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"babel-eslint": "^10.1.0",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.24.0",
"eslint-config-axuebin": "0.0.1-beta.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"prettier": "^2.2.0"
},
"lint-staged": {
"lib/**/*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"**/*": "prettier --write --ignore-unknown"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}