-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.37 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
{
"name": "redux-saga-utils",
"jest": {
"testMatch": [
"**/__tests__/**/*.spec.js"
],
"collectCoverage": true,
"coverageReporters": [
"lcov"
]
},
"scripts": {
"clean": "rimraf dist coverage",
"build:dev": "webpack",
"build:prod": "webpack -p",
"test": "jest",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"files": [
"src",
"dist",
"README.rst",
"LICENSE"
],
"keywords": [
"javascript",
"redux",
"middleware",
"saga",
"effects",
"side effects"
],
"version": "1.0.0",
"description": "High level utils for redux-saga",
"main": "dist/bundle.js",
"module": "src/index.js",
"repository": "https://github.com/DmitryFillo/redux-saga-utils.git",
"author": "Dmitry Fillo <fillo@fillo.me>",
"license": "MIT",
"devDependencies": {
"babel-jest": "19.0.0",
"babel-loader": "6.4.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-stage-0": "6.22.0",
"coveralls": "2.12.0",
"eslint": "3.18.0",
"eslint-config-airbnb-base": "11.1.2",
"eslint-plugin-import": "2.2.0",
"jest": "19.0.2",
"redux": "3.6.0",
"rimraf": "2.6.1",
"webpack": "2.2.1"
},
"dependencies": {
"babel-runtime": "6.23.0",
"redux-saga": "0.14.3"
},
"peerDependencies": {
"redux-saga": "^0.14.3"
}
}