-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.75 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": "redux-saga-integration-test",
"version": "1.4.0",
"description": "Utilities to test sagas, reducers and selectors in integration",
"repository": {
"type": "git",
"url": "git://github.com/en-japan-air/redux-saga-integration-test.git"
},
"license": "MIT",
"main": "src/index.js",
"scripts": {
"lint": "eslint --fix --ignore-path .gitignore .",
"test:clean": "rimraf ./coverage",
"pretest": "npm run test:clean",
"preproduction": "git checkout master && git pull",
"production": "np --yolo",
"posttest": "npm run lint",
"test": "cross-env NODE_ENV=test jest --bail",
"test:coverage": "cross-env NODE_ENV=test jest --bail --coverage",
"test:coverage:ci": "cross-env NODE_ENV=test jest --bail --coverage --maxWorkers 2",
"test:watch": "cross-env NODE_ENV=test jest --watchAll"
},
"pre-commit": [
"lint"
],
"peerDependencies": {
"immutable": "3.x",
"redux": "3.x || 4.x",
"redux-immutable": "4.x",
"redux-saga": "0.16.x"
},
"devDependencies": {
"cross-env": "5.2.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-redux-saga": "1.0.0",
"immutable": "3.8.2",
"jest-cli": "24.8.0",
"np": "5.0.3",
"pre-commit": "1.2.2",
"redux": "4.0.1",
"redux-immutable": "4.0.0",
"redux-saga": "0.16.0",
"reselect": "4.0.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"**/*.test.{js,jsx}"
],
"coverageThreshold": {
"global": {
"statements": 80,
"branches": 65,
"functions": 80,
"lines": 80
}
},
"moduleDirectories": [
"node_modules"
],
"testRegex": "tests/.*\\.test\\.js$"
}
}