-
Notifications
You must be signed in to change notification settings - Fork 866
/
package.json
80 lines (80 loc) · 2.08 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
80
{
"name": "redux-persist",
"version": "6.1.0",
"description": "persist and rehydrate redux stores",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"repository": "rt2zz/redux-persist",
"files": [
"src",
"es",
"lib",
"dist",
"integration",
"README.md"
],
"scripts": {
"ava": "ava",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd",
"build:commonjs": "tsc --module commonjs --outDir lib",
"build:es": "tsc --module es2015 --outDir es",
"build:umd": "rollup -c",
"clean": "rimraf dist && rimraf es && rimraf lib",
"prepare": "npm run build",
"precommit": "lint-staged",
"stats:size": "node ./scripts/size-estimator.js",
"test": "ava",
"version": "npm run clean && npm run build && npm run stats:size | tail -1 >> LIBSIZE.md && git add LIBSIZE.md"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"git add"
]
},
"author": "",
"license": "MIT",
"homepage": "https://github.com/rt2zz/redux-persist#readme",
"ava": {
"files": [
"tests/**/*.spec.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"@types/react": "^17.0.16",
"@types/redux-mock-store": "^1.0.3",
"@types/sinon": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"ava": "^3.15.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.23.4",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"redux": "^4.1.1",
"redux-mock-store": "^1.5.4",
"rimraf": "^3.0.2",
"rollup": "^2.56.0",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^11.1.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"peerDependencies": {
"redux": ">4.0.0"
}
}