-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.36 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-sync",
"description": "A redux store enhancer which allows to mirror one store as a part of another",
"version": "0.4.1",
"author": "Stefan Dühring | Autarc <[email protected]>",
"bugs": {
"url": "https://github.com/Autarc/redux-sync/issues"
},
"dependencies": {
"json-stringify-safe": "^5.0.1",
"jsondiffpatch": "^0.1.43",
"object-path": "^0.9.2"
},
"devDependencies": {
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"deep-merge": "^1.0.0",
"fs-extra": "^0.26.7",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-load-plugins": "^1.2.2",
"gulp-plumber": "^1.1.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.5",
"webpack": "^1.13.0"
},
"peerDependencies": {
"redux": "^2.0.0 || ^3.0.0"
},
"homepage": "https://github.com/Autarc/redux-sync",
"keywords": [
"redux",
"sync",
"messaging",
"context",
"iframe"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Autarc/redux-sync.git"
},
"scripts": {
"build": "NODE_ENV=production node build",
"check": "npm outdated -depth 0",
"dev": "NODE_ENV=Development node build"
}
}