forked from yeyan1996/async-catch-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.27 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": "async-catch-loader",
"version": "2.0.5",
"description": "a webpack loader that captures error of async function",
"main": "src/index.js",
"scripts": {
"test": "jest --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yeyan1996/async-catch-loader.git"
},
"keywords": [
"loader",
"webpack",
"try",
"catch"
],
"author": "yeyan1996",
"license": "MIT",
"bugs": {
"url": "https://github.com/yeyan1996/async-catch-loader/issues"
},
"homepage": "https://github.com/yeyan1996/async-catch-loader#readme",
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/parser": "^7.5.0",
"@babel/preset-env": "^7.5.2",
"@babel/traverse": "^7.5.0",
"@babel/types": "^7.5.0",
"babel-jest": "^24.8.0",
"babel-polyfill": "^6.26.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.6.0",
"jest": "^24.8.0",
"lint-staged": "^9.2.1",
"loader-utils": "^1.2.3",
"memory-fs": "^0.4.1",
"prettier": "^1.18.2",
"webpack": "^4.35.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test"
}
},
"lint-staged": {
"*.{js}": [
"eslint --fix"
]
}
}