forked from redux-json-api/redux-json-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "redux-json-api",
"version": "1.7.0",
"description": "A bunch of Redux actions, action creators and reducers to integrate with a JSON API",
"main": "lib/jsonapi.js",
"scripts": {
"build": "rimraf lib && babel ./src -d lib",
"test": "mocha --compilers js:babel-core/register --recursive",
"test:watch": "npm test -- --watch",
"lint": "eslint . ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dixieio/redux-json-api.git"
},
"keywords": [
"redux",
"json",
"api",
"jsonapi"
],
"author": "Ronni Egeriis Persson <ronni@dixie.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dixieio/redux-json-api/issues"
},
"homepage": "https://github.com/dixieio/redux-json-api#readme",
"peerDependencies": {
"redux-thunk": ">=1.0.0"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.3.19",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"expect": "^1.14.0",
"fetch-mock": "^5.1.2",
"mocha": "^2.4.5",
"rimraf": "^2.5.1",
"webpack": "^1.12.12"
},
"dependencies": {
"deep-equal": "^1.0.1",
"fetch-everywhere": "^1.0.5",
"object-path-immutable": "^0.5.0",
"pluralize": "^1.2.1",
"redux-actions": "^0.9.1"
}
}