-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "redux-persist-middleware",
"description": "Creates Redux middleware that will lazily persist data from certain reducers, when certain actions occur.",
"version": "1.0.1",
"author": "Henrik Joreteg <henrik@joreteg.com> (joreteg.com)",
"bugs": {
"url": "https://github.com/HenrikJoreteg/redux-persist-middleware/issues"
},
"devDependencies": {
"microbundle": "0.4.4",
"redux": "3.7.2",
"tape": "4.9.0"
},
"files": [
"dist"
],
"homepage": "https://github.com/HenrikJoreteg/redux-persist-middleware",
"keywords": [
"PWA",
"redux",
"cache",
"indexeddb"
],
"license": "MIT",
"main": "dist/redux-persist-middleware.js",
"module": "dist/redux-persist-middleware.m.js",
"prettier": {
"semi": false,
"singleQuote": true
},
"repository": {
"type": "git",
"url": "https://github.com/HenrikJoreteg/redux-persist-middleware.git"
},
"scripts": {
"build": "microbundle",
"prepublish": "npm run build",
"test": "npm run build && tape test.js"
},
"source": "index.js"
}