-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
38 lines (38 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
{
"name": "jest-watch-select-projects",
"version": "2.0.0",
"main": "src/index.js",
"author": "Rogelio Guzman <[email protected]>",
"description": "An experimental ESLint runner for Jest",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rogeliog/jest-watch-select-projects.git"
},
"homepage": "https://github.com/rogeliog/jest-watch-select-projects",
"files": [
"src/"
],
"scripts": {
"test": "echo No tests are set up",
"lint": "eslint .",
"format": "prettier --single-quote --trailing-comma all --write \"**/*.js\""
},
"dependencies": {
"ansi-escapes": "^4.3.0",
"chalk": "^3.0.0",
"prompts": "^2.2.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.13.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}