forked from FredericHeem/redux-act-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.72 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-act-async",
"version": "1.6.0",
"license": "Apache-2.0",
"description": "Reducing the boilerplate of redux asynchronous applications",
"keywords": [
"async",
"redux",
"flux",
"action",
"reducer"
],
"main": "lib/index.js",
"homepage": "https://github.com/FredericHeem/redux-act-async",
"author": {
"name": "Frederic Heem",
"url": "https://github.com/FredericHeem"
},
"repository": {
"type": "git",
"url": "https://github.com/FredericHeem/redux-act-async"
},
"bugs": {
"url": "https://github.com/FredericHeem/redux-act-async/issues"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.18.2",
"babel-eslint": "7.1.1",
"babel-plugin-transform-object-rest-spread": "6.19.0",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-stage-0": "6.16.0",
"chai": "3.5.0",
"chai-spies": "0.7.1",
"eslint": "3.11.1",
"eslint-config-standard": "6.2.1",
"eslint-loader": "1.6.1",
"eslint-plugin-babel": "4.0.0",
"eslint-plugin-promise": "3.4.0",
"eslint-plugin-standard": "2.0.1",
"isparta": "4.0.0",
"jest-cli": "17.0.3",
"lodash": "4.17.2",
"redux": "3.6.0",
"redux-logger": "2.7.4",
"redux-thunk": "2.1.0",
"rimraf": "2.5.4"
},
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"lint": "eslint .",
"prepublish": "npm run clean && npm run build",
"test": "jest --coverage",
"watch:test": "jest --watch",
"version": "npm test",
"postversion": "git push && git push --tags"
},
"dependencies": {
"babel-runtime": "^6.18.0",
"object-assign": "^4.1.1",
"redux-act": "^1.1.0"
}
}