-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
{
"name": "redux-localstore",
"version": "1.0.0",
"description": "Synchronize Redux Store with localStorage",
"license": "MIT",
"author": "Junior Oliveira",
"main": "dist/redux-localstore.cjs.js",
"module": "dist/redux-localstore.esm.js",
"browser": "dist/redux-localstore.umd.js",
"scripts": {
"prepare": "yarn build",
"build": "rollup -c",
"test": "jest --watch --coverage"
},
"devDependencies": {
"@babel/core": "7.4.0",
"@babel/preset-env": "7.4.2",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.5.0",
"jest": "24.5.0",
"jest-localstorage-mock": "^2.2.0",
"redux": "^3.7.2",
"rollup": "1.7.0",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-commonjs": "9.2.1",
"rollup-plugin-node-resolve": "4.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/arojunior/redux-localstore.git"
},
"keywords": [
"es6",
"redux",
"localStorage",
"persist"
],
"bugs": {
"url": "https://github.com/arojunior/redux-localstore/issues"
},
"homepage": "https://github.com/arojunior/redux-localstore",
"jest": {
"setupFiles": [
"jest-localstorage-mock"
]
},
"files": [
"dist"
]
}