-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 824 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 824 Bytes
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
{
"private": true,
"scripts": {
"prepare": "is-ci || husky install",
"test": "jest --runInBand",
"lint": "eslint *.js test",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@babel/core": "7.18.13",
"@babel/eslint-parser": "7.18.9",
"@babel/preset-env": "7.18.10",
"babel-jest": "27.5.1",
"cross-fetch": "3.1.5",
"cross-spawn": "7.0.3",
"eslint": "8.22.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-no-only-tests": "3.0.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "27.5.1",
"husky": "8.0.3",
"is-ci": "3.0.1",
"lint-staged": "12.5.0",
"strip-ansi": "6.0.0",
"tree-kill": "1.2.2",
"wait-on": "6.0.1"
},
"lint-staged": {
"test/**/*.js": "eslint",
"*.js": "eslint"
}
}