-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
65 lines (65 loc) · 1.83 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "jest-runner-eslint",
"version": "2.2.1",
"main": "build/runner",
"author": "Rogelio Guzman <rogelioguzmanh@gmail.com>",
"description": "An ESLint runner for Jest",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jest-community/jest-runner-eslint.git"
},
"homepage": "https://github.com/jest-community/jest-runner-eslint",
"files": [
"build/",
"watch-fix.js"
],
"scripts": {
"test": "jest",
"lint": "eslint . --config ./.eslintrc.json --no-eslintrc",
"watch": "babel src -w --ignore **/*.test.js,integration -d build",
"prebuild": "rimraf build/",
"build": "babel src --ignore **/*.test.js,integration -d build",
"prepare": "yarn build",
"format": "prettier --write \"**/*.js\""
},
"dependencies": {
"chalk": "^4.0.0",
"cosmiconfig": "^7.0.0",
"create-jest-runner": "^0.11.2",
"dot-prop": "^6.0.1"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-jest": "^27 || ^28 || ^29",
"eslint": "^7 || ^8",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-prettier": "^4.0.0",
"execa": "^5.1.1",
"jest": "^27 || ^28 || ^29",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^1.1.0 || ^2.1.1",
"prettier": "^2.8.4",
"rimraf": "^3.0.2",
"semver": "^7.3.8"
},
"peerDependencies": {
"eslint": "^7 || ^8",
"jest": "^27 || ^28 || ^29"
},
"prettier": {
"arrowParens": "avoid",
"proseWrap": "never",
"singleQuote": true,
"trailingComma": "all"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=18.0.0"
}
}