forked from michaelcontento/redux-storage
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
69 lines (69 loc) · 1.67 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "redux-storage",
"version": "4.1.4",
"description": "Persistence layer for redux with flexible backends",
"main": "build/index.js",
"jsnext:main": "build-es/index.js",
"scripts": {
"test": "make lint test build"
},
"repository": {
"type": "git",
"url": "https://github.com/react-stack/redux-storage.git"
},
"bugs": "https://github.com/react-stack/redux-storage/issues",
"homepage": "https://github.com/react-stack/redux-storage",
"keywords": [
"redux",
"redux-middleware",
"fsa",
"flux-standard-action",
"flux",
"immutable",
"persistent",
"data",
"localstorage"
],
"author": [
"Michael Contento <[email protected]>",
"Guns <[email protected]>",
"Renan Bandeira <[email protected]>"
],
"files": [
"build/",
"build-es/",
"src",
"!**/__tests__/**"
],
"eslintConfig": {
"extends": "michaelcontento"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-polyfill": "^6.9.1",
"babel-preset-modern-node": "^3.0.0",
"babel-preset-stage-2": "^6.11.0",
"eslint": "^1.10.3",
"eslint-config-michaelcontento": "^1.1.1",
"eslint-plugin-mocha-only": "0.0.3",
"mocca": "^1.0.3",
"release-it": "^2.4.1"
},
"dependencies": {
"lodash.isfunction": "^3.0.8",
"lodash.isobject": "^3.0.2",
"loose-envify": "^1.2.0",
"redux-actions": "^0.10.1",
"redux-storage-merger-simple": "^1.0.2"
},
"peerDependencies": {
"redux": "^4.0.0 || ^3.0.0 || ^2.0.0 || ^1.0.0 || 1.0.0-alpha || 1.0.0-rc"
},
"browserify": {
"transform": [
"loose-envify"
]
}
}