-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.45 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
{
"name": "redux-collection",
"version": "0.2.0",
"description": "A robust redux collection data structure that easily syncs with a RESTful API",
"main": "./lib/index.js",
"scripts": {
"build": "npm run build:lib && npm run build:umd",
"build:lib": "babel src --out-dir lib",
"test": "echo \"Error: no test specified\" && exit 1",
"build:umd": "NODE_ENV=development webpack",
"example": "npm run build:lib && rm examples/simple-one/output.js && babel examples/simple-one --out-file examples/simple-one/output.js && node examples/simple-one/output.js"
},
"files": [
"dist",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/eladlevy/redux-collection.git"
},
"keywords": [
"redux",
"collection",
"collections",
"rest",
"restful",
"nested",
"state"
],
"author": "Elad Levy",
"license": "MIT",
"bugs": {
"url": "https://github.com/eladlevy/redux-collection/issues"
},
"homepage": "https://github.com/eladlevy/redux-collection#readme",
"dependencies": {
"lodash.merge": "^4.3.2",
"lodash.uniqueid": "^4.0.0",
"lodash.without": "^4.1.1",
"normalizr": "^2.0.0",
"redux": "^3.6.0"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-cli": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"webpack": "^1.13.2"
}
}