-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 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
{
"name": "cape-redux-collection",
"version": "4.2.3",
"description": "Redux functions for managing lists of stuff.",
"main": "lib/index.js",
"author": "Kai Curry <[email protected]> (http://www.cape.io/)",
"repository": {
"url": "[email protected]:cape-io/cape-redux-collection.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/cape-io/cape-redux-collection/issues"
},
"scripts": {
"build": "mkdir -p lib && babel ./src -d lib",
"lint": "eslint src test",
"prepublish": "npm run build",
"test": "npm run lint && npm run test:node",
"test:node": "babel-tape-runner test/**/*spec.js"
},
"license": "ISC",
"dependencies": {
"cape-firebase": "^0.3.0",
"cape-lodash": "^1.7.0",
"cape-redux": "^3.1.0",
"cape-redux-auth": "^4.0.0",
"cape-select": "^2.3.1",
"lodash": "^4.17.2",
"redux-graph": "^2.10.0",
"redux-history-sync": "^3.1.0",
"reselect": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-lodash": "^3.2.9",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-1": "^6.16.0",
"babel-tape-runner": "^2.0.1",
"eslint": "^3.10.2",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^2.2.0",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"tape": "^4.6.2",
"upgrade": "^1.1.0",
"yarn": "^0.17.3"
}
}