forked from jest-community/jest-runner-eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.68 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
{
"name": "jest-runner-eslint",
"version": "0.7.4",
"main": "build/runner",
"author": "Rogelio Guzman <rogelioguzmanh@gmail.com>",
"description": "An experimental 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": "^2.4.1",
"cosmiconfig": "^5.0.0",
"create-jest-runner": "^0.5.3",
"eslint": "^5.6.0"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-jest": "^24.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-prettier": "^3.1.0",
"execa": "^1.0.0",
"jest": "^21.0.0 || ^22.0.0 || ^23.0.0 || ^24.0.0",
"jest-watch-select-projects": "^0.1.1",
"jest-watch-typeahead": "^0.3.1",
"prettier": "^1.14.3",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"eslint": "^4.0.0 || ^5.0.0",
"jest": "^21.0.0 || ^22.0.0 || ^23.0.0 || ^24.0.0"
},
"prettier": {
"proseWrap": "never",
"singleQuote": true,
"trailingComma": "all"
}
}