-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.47 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.47 KB
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
{
"name": "redux-data",
"version": "0.0.12",
"description": "A library that works with redux to load data from your server.",
"main": "build/index",
"repository": "dmin/redux-data",
"scripts": {
"compile": "rm -rf build && babel source --out-dir build",
"watch": "rm -rf build && babel source --watch --out-dir build",
"legend": "server ./examples ./examples/data",
"prepublish": "npm run compile"
},
"author": "David Mininger",
"license": "ISC",
"peerDependencies": {
"react": "^15.0.1",
"react-redux": "^4.4.2",
"redux": "^3.4.0"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"eslint": "^3.19.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^3.0.1",
"invariant": "^2.2.1",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"sinon": "^1.17.3",
"tape": "^4.5.1"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"deep-equal": "^1.0.1",
"lodash.camelcase": "^4.1.1",
"lodash.curry": "^4.0.1",
"lodash.filter": "^4.3.0",
"lodash.find": "^4.3.0",
"lodash.flow": "^3.3.0",
"lodash.snakecase": "^4.0.1",
"lodash.unionwith": "^4.3.0",
"superagent": "^1.8.3"
}
}