-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
67 lines (67 loc) · 1.71 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
66
67
{
"name": "jest-coverage-ratchet",
"version": "0.2.3",
"description": "Ensures code coverage only increases",
"main": "index.js",
"author": "Kyle Chamberlain",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Koleok/jest-coverage-ratchet.git"
},
"keywords": [
"lint-staged",
"testing",
"jest",
"snapshot",
"code coverage",
"coverage",
"ratchet"
],
"scripts": {
"local": "node .",
"jest": "./node_modules/.bin/jest",
"test": "yarn jest",
"test:watch": "yarn jest -- --watch",
"lint": "./node_modules/.bin/eslint . --ext .js --ext .jsx",
"lint:staged": "./node_modules/.bin/lint-staged",
"lint:errors": "yarn lint -- --quiet",
"lint:fix": "yarn lint -- --fix",
"format": "./node_modules/.bin/prettier-eslint \"*src/**/*.js\" --write",
"prepush": "yarn test",
"precommit": "yarn lint:staged"
},
"lint-staged": {
"*.js": [
"./node_modules/.bin/prettier-eslint --write",
"git add",
"./node_modules/.bin/eslint"
]
},
"dependencies": {
"chalk": "^1.1.3",
"fluture": "^6.1.0",
"fs-extra": "^3.0.1",
"ramda": "^0.23.0",
"yargs": "^8.0.1"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"husky": "^0.13.3",
"jest": "^20.0.3",
"lint-staged": "^3.4.2",
"prettier-eslint-cli": "^3.6.0",
"xyz": "^2.1.0"
},
"bin": {
"jest-coverage-ratchet": "index.js"
}
}