-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
39 lines (39 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
35
36
37
38
39
{
"name": "redux-online-store-enhancer",
"version": "3.0.0",
"description": "Automatically detect if you are online or online.",
"main": "./lib/onlineStoreEnhancer.js",
"scripts": {
"build": "babel onlineStoreEnhancer.js -d lib",
"flow": "flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jurassix/redux-online-store-enhancer.git"
},
"keywords": [
"online",
"offline",
"redux",
"store",
"enhancer"
],
"author": "jurassix (clinton.ayres@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jurassix/redux-online-store-enhancer/issues"
},
"homepage": "https://github.com/jurassix/redux-online-store-enhancer#readme",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-2": "^6.17.0",
"flow-bin": "^0.42.0",
"redux": "^3.6.0"
},
"dependencies": {},
"peerDependecies": {
"react-native": ">= 0.49.0"
}
}