-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1008 Bytes
/
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
{
"name": "redux-iterators",
"version": "0.2.1",
"description": "Redux middleware for iterator actions",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"test": "mocha --compilers js:babel-register"
},
"author": "",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"redux": "^3.5.2",
"redux-mock-store": "^1.1.2",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.1.0"
},
"dependencies": {
"babel-runtime": "^6.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aabenoja/redux-iterators.git"
},
"keywords": [
"redux",
"middleware",
"iterators",
"generators"
],
"bugs": {
"url": "https://github.com/aabenoja/redux-iterators/issues"
},
"homepage": "https://github.com/aabenoja/redux-iterators#readme"
}