-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.3 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
{
"name": "redux-persist-transform-compress",
"version": "4.2.0",
"description": "compress your redux state",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "echo \"no tests specified\" && exit 0",
"copy-types": "cp -r type-definitions/ lib/",
"clean": "rimraf lib",
"build": "npm run build:es5 && npm run copy-types",
"build:es5": "babel src --out-dir lib",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/rt2zz/redux-persist-transform-compress.git"
},
"homepage": "https://github.com/rt2zz/redux-persist-transform-compress",
"author": "rt2zz <zack@root-two.com>",
"contributors": [
"Karol Janyst <lapkom@gmail.com> (https://github.com/LKay)"
],
"license": "MIT",
"dependencies": {
"json-stringify-safe": "^5.0.1",
"lz-string": "^1.4.4"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"rimraf": "~2.5.4"
},
"peerDependencies": {
"redux-persist": ">=4.0.0"
},
"files": [
"lib",
"src",
"index.d.ts"
],
"keywords": [
"redux",
"redux-persist",
"redux-persist-transform",
"compression"
]
}