-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.53 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.53 KB
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
57
58
59
{
"name": "awesome-coding-javascript",
"version": "1.0.0",
"description": "talk is cheap, show me the code",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"bundle": "node src/webpack/minipack.js",
"webpack:plugin": "node src/webpack-plugin/example/debug.js",
"ci": "npm run test:cov && codecov"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/caiyongmin/awesome-coding-javascript.git"
},
"keywords": [],
"author": "caiyongmin <645589265@qq.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/caiyongmin/awesome-coding-javascript/issues"
},
"homepage": "https://github.com/caiyongmin/awesome-coding-javascript#readme",
"devDependencies": {
"@babel/core": "~7.4.4",
"@babel/parser": "~7.4.4",
"@babel/plugin-proposal-class-properties": "~7.4.4",
"@babel/preset-env": "~7.4.4",
"@babel/traverse": "~7.4.4",
"@babel/types": "~7.4.4",
"babel-eslint": "~10.0.1",
"babel-jest": "~24.7.1",
"codecov": "~3.8.3",
"eslint": "~6.2.2",
"eslint-config-airbnb": "~17.1.0",
"husky": "~3.0.0",
"jest": "~24.7.1",
"lint-staged": "~9.1.0",
"open": "~6.2.0",
"react": "~16.10.2",
"webpack": "~4.41.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {}
}