forked from rt2zz/redux-persist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.89 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
{
"name": "redux-persist",
"version": "5.1.0",
"description": "persist and rehydrate redux stores",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"es",
"src",
"lib"
],
"scripts": {
"build": "npm run flow-copy && npm run build:commonjs && npm run build:es",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"clean": "rimraf es && rimraf lib",
"flow-copy": "flow-copy-source src es && flow-copy-source src lib",
"precommit": "lint-staged",
"prepublishOnly": "npm run clean && npm run build",
"test": "BABEL_ENV=commonjs ava"
},
"lint-staged": {
"src/**/*.js": [
"prettier --no-semi --single-quote --trailing-comma --parser=flow --write",
"git add"
]
},
"author": "",
"license": "MIT",
"ava": {
"files": [
"tests/**/*.spec.js"
],
"require": [
"babel-polyfill",
"babel-register"
],
"babel": "inherit"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.24.1",
"cross-env": "^5.0.1",
"eslint": "^4.8.0",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.2.0",
"flow-bin": "^0.56.0",
"flow-copy-source": "^1.1.0",
"husky": "^0.13.3",
"lint-staged": "^3.4.0",
"lodash": "^4.17.4",
"prettier": "^1.4.4",
"redux": "^3.6.0",
"redux-mock-store": "^1.2.3",
"rimraf": "^2.6.1",
"sinon": "^2.3.2"
},
"peerDependencies": {
"redux": ">3.0.0"
},
"dependencies": {}
}