-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "redux-cache",
"description": "Higher order cache reducer",
"version": "0.1.1",
"author": "Denis Karabaza <[email protected]>",
"browserify": {
"transform": [
"envify"
]
},
"bugs": {
"url": "https://github.com/simplesmiler/redux-cache/issues"
},
"dependencies": {
"envify": "^3.4.0",
"object-path-immutable": "^0.2.0",
"redux": "^3.0.0"
},
"devDependencies": {
"eslint": "^1.10.3",
"mkdirp": "^0.5.1",
"rollup": "^0.21.2",
"rollup-plugin-commonjs": "^1.4.0",
"rollup-plugin-npm": "^1.1.0",
"rollup-plugin-replace": "^1.1.0",
"uglify-js": "^2.6.1"
},
"files": [
"index.js",
"dist"
],
"homepage": "https://github.com/simplesmiler/redux-cache",
"keywords": [
"cache",
"redux"
],
"license": "MIT",
"main": "dist/redux-cache.common.js",
"repository": {
"type": "git",
"url": "https://github.com/simplesmiler/redux-cache"
},
"scripts": {
"build": "node build.js",
"lint": "./node_modules/.bin/eslint index.js build.js",
"test": "echo \"Error: no test specified\" && exit 1"
}
}