forked from rt2zz/redux-persist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.25 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
79
{
"name": "redux-persist",
"version": "4.8.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 --esnext",
"test:watch": "npm test -- --watch",
"copy-types": "cp -r type-definitions/index.d.ts lib/index.d.ts && cp -r type-definitions/index.d.ts es/index.d.ts",
"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:commonjs -- -watch",
"prepublish": "npm run clean && npm run build"
},
"ava": {
"require": [
"babel-register",
"babel-polyfill"
],
"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 <zack@root-two.com>",
"license": "MIT",
"dependencies": {
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.4",
"lodash-es": "^4.17.4"
},
"devDependencies": {
"ava": "^0.18.1",
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"cross-env": "^3.1.4",
"immutable": "^3.8.1",
"lodash-webpack-plugin": "^0.11.0",
"redux": "^3.6.0",
"rimraf": "~2.5.4",
"standard": "^8.6.0",
"webpack": "^2.2.1"
},
"files": [
"es",
"dist",
"lib",
"src",
"constants.js",
"storages.js",
"index.js.flow",
"index.d.ts"
],
"standard": {
"parser": "babel-eslint"
}
}