forked from wubaiqing/zaobao
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"commit": "commit",
"lint:md": "lint-md ./docs/",
"lint:js": "eslint --fix --ext .js .",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@commitlint/cli": "^7.3.2",
"@commitlint/config-conventional": "^7.3.1",
"@commitlint/prompt-cli": "^7.3.1",
"@commitlint/travis-cli": "^7.3.2",
"@vssue/vuepress-plugin-vssue": "^0.8.2",
"@vuepress/plugin-google-analytics": "^1.0.0-alpha.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"coveralls": "^3.0.2",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-md": "^0.0.8",
"lint-staged": "^8.1.0",
"vuepress": "^1.0.0-alpha.30",
"vuepress-plugin-rss-support": "^1.0.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"oji": "^3.2.3"
}
}