forked from rt2zz/redux-persist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.14 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
70
71
72
73
74
75
76
77
78
{
"name": "redux-persist",
"version": "4.1.0",
"description": "persist and rehydrate redux stores",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"test": "standard 'src/**/*.js' 'test/**/*.js' storages.js constants.js && BABEL_ENV=commonjs ava",
"test:watch": "npm test -- --watch",
"copy-types": "cp -r type-definitions/ lib/",
"clean": "rimraf lib dist es",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min && npm run copy-types",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=commonjs webpack",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack",
"build:watch": "npm run build ./src -- -watch",
"prepublish": "npm run clean && npm run build"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"repository": {
"type": "git",
"url": "https://github.com/rt2zz/redux-persist.git"
},
"homepage": "https://github.com/rt2zz/redux-persist",
"keywords": [
"redux",
"redux-middleware",
"localstorage",
"redux-persist",
"redux-storage",
"redux-rehydrate"
],
"author": "rt2zz <[email protected]>",
"license": "MIT",
"dependencies": {
"json-stringify-safe": "^5.0.1",
"lodash": "^4.11.1",
"lodash-es": "^4.16.0"
},
"devDependencies": {
"@types/redux": "^3.6.0",
"ava": "^0.16.0",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-2": "^6.5.0",
"cross-env": "^2.0.1",
"immutable": "^3.7.6",
"lodash-webpack-plugin": "^0.10.1",
"redux": "^3.5.2",
"rimraf": "~2.5.2",
"standard": "^8.0.0",
"webpack": "^1.13.2"
},
"files": [
"es",
"dist",
"lib",
"src",
"constants.js",
"storages.js",
"index.js.flow",
"index.d.ts"
],
"standard": {
"parser": "babel-eslint"
}
}