-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "jest-watch-master",
"version": "1.0.0",
"license": "MIT",
"author": "Rick Hanlon II <[email protected]> (https://rickhanlon.codes/)",
"description": "Jest watch plugin for checking changes since master",
"main": "src/index.js",
"engines": {
"node": ">= 6"
},
"scripts": {
"lint": "eslint src",
"prettier": "prettier --write '**/**.js' '**/**.md'"
},
"keywords": [
"jest",
"plugin",
"watch"
],
"bugs": {
"url": "https://github.com/rickhanlonii/jest-watch-master/issues"
},
"repository": {
"type": "git",
"url": "[email protected]/rickhanlonii/jest-watch-master"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"jest": "^23.5.0",
"prettier": "^1.13.5"
},
"peerDependencies": {
"jest": ">= 23.6.0",
"jest-validate": ">= 23.6.0"
},
"dependencies": {
"chalk": "^2.0.0"
}
}