-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
34 lines (34 loc) · 829 Bytes
/
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
{
"name": "redux-normalizr-middleware",
"version": "2.0.0",
"description": "Combines redux middleware and normalizr to make flattening nested data a snap",
"main": "lib.js",
"repository": "github:wbinnssmith/redux-normalizr-middleware",
"files": [
"README.md",
"lib.js"
],
"scripts": {
"build": "babel index.js -o lib.js",
"prepublish": "npm test && npm run build",
"test": "babel-node test.js |faucet"
},
"keywords": [
"normalizr",
"redux",
"redux-middleware"
],
"author": "Will Binns-Smith <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"faucet": "0.0.1",
"redux": "^3.0.5",
"tap": "^5.1.1"
},
"dependencies": {
"normalizr": "^2.0.0",
"lodash": "^4.0.0"
}
}