-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
53 lines (53 loc) · 1.32 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-pack",
"version": "0.1.5",
"description": "Sensible promise handling and middleware for redux",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run build",
"test": "npm run lint",
"lint": "eslint ./",
"build": "babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lelandrichardson/redux-pack.git"
},
"keywords": [
"redux",
"middleware",
"promise",
"async",
"normalize",
"normalizr",
"react"
],
"author": "Leland Richardson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lelandrichardson/redux-pack/issues"
},
"homepage": "https://github.com/lelandrichardson/redux-pack#readme",
"peerDependencies": {
"redux": "*"
},
"dependencies": {
"deline": "^1.0.4",
"invariant": "^2.2.2",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-eslint": "^6.1.0",
"babel-preset-react-native": "^1.9.0",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-prefer-object-spread": "^1.0.0",
"eslint-plugin-react": "^6.8.0",
"normalizr": "^2.3.0",
"redux": "^3.6.0"
}
}