-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.02 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
{
"name": "redux-lift",
"version": "0.1.3",
"description": "Store composition for redux.",
"author": "Izaak Schroeder <izaak.schroeder@gmail.com>",
"license": "CC0-1.0",
"repository": "izaakschroeder/redux-lift",
"main": "dist/src/index.js",
"scripts": {
"prepublish": "./node_modules/.bin/babel -s inline -d dist/src src/",
"pretest": "npm run prepublish && ./node_modules/.bin/babel -s inline -d dist/test test/",
"test": "./node_modules/.bin/mocha dist/test/spec/"
},
"dependencies": {
"redux": "^3.0.3"
},
"peerDependencies": {
"redux": ">=2.0.0"
},
"devDependencies": {
"babel-cli": "^6.0.2",
"babel-plugin-syntax-object-rest-spread": "^6.0.2",
"babel-plugin-transform-flow-strip-types": "^6.0.2",
"babel-plugin-transform-object-rest-spread": "^6.0.2",
"babel-preset-es2015": "^6.0.11",
"chai": "^3.4.0",
"is-promise": "^2.1.0",
"mocha": "^2.3.3",
"redux": "^3.0.3",
"redux-promise": "^0.5.0",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
}
}