forked from jfairbank/redux-saga-test-plan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.97 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "redux-saga-test-plan",
"version": "3.2.0",
"description": "Test Redux Saga with an easy plan",
"main": "lib/index.js",
"files": [
"decls",
"src",
"lib",
"matchers.js",
"providers.js"
],
"scripts": {
"build": "babel src --out-dir lib --ignore __mocks__",
"check": "npm run lint && npm run typecheck && npm test",
"clean": "rimraf lib",
"lint": "eslint src/ __tests__/",
"prepublish": "npm run clean && npm run build",
"test": "jest",
"test:ci": "jest --runInBand",
"watch:test": "npm test -- --watch",
"typecheck": "flow",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cp CNAME _book && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push [email protected]:jfairbank/redux-saga-test-plan gh-pages --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jfairbank/redux-saga-test-plan.git"
},
"keywords": [
"redux",
"saga",
"redux-saga",
"test",
"testing",
"tdd",
"bdd"
],
"author": "Jeremy Fairbank <[email protected]> (http://jeremyfairbank.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jfairbank/redux-saga-test-plan/issues"
},
"homepage": "https://github.com/jfairbank/redux-saga-test-plan#readme",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-eslint": "^8.0.0",
"babel-jest": "^21.0.2",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.7.2",
"eslint": "^4.7.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-import-resolver-node": "^0.3.0",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-import": "^2.1.0",
"flow-bin": "^0.46.0",
"gitbook-cli": "^2.3.0",
"jest": "^21.1.0",
"redux": "^3.6.0",
"redux-saga": "^0.15.1",
"rimraf": "^2.5.4"
},
"dependencies": {
"core-js": "^2.4.1",
"fsm-iterator": "^1.1.0",
"lodash.isequal": "^4.5.0",
"lodash.ismatch": "^4.4.0",
"object-assign": "^4.1.0",
"util-inspect": "^0.1.8"
},
"peerDependencies": {
"redux-saga": ">= 0.15.0 < 0.16.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!src/utils/**/*.js"
],
"coverageReporters": [
"json",
"lcov",
"text-summary"
],
"modulePaths": [
"<rootDir>/src/",
"<rootDir/__tests__/"
],
"testRegex": "__tests__/.*\\.test\\.js$"
}
}