-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1023 Bytes
/
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": "hdyusf-common",
"version": "0.1.19",
"main": "index.js",
"scripts": {
"test": "jest"
},
"dependencies": {
"qs": "^6.10.1"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.3.1",
"core-js": "^3.6.5",
"crypto-js": "^4.1.1",
"eslint": "^6.7.2",
"eslint-plugin-jest": "^25.2.2",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"pako": "^2.0.4"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"jest": true
},
"extends": [
"jest",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"no-empty": "off",
"no-unused-vars": "off"
}
},
"lint-staged": {
"*.{js}": [
"prettier --config prettier.config.js --write",
"eslint --fix"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}