-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
71 lines (71 loc) · 1.88 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
{
"name": "redaction",
"version": "5.0.4",
"author": {
"name": "Pavel Ivanov",
"email": "[email protected]"
},
"description": "Reducers without constants and dispatch",
"homepage": "https://github.com/pavelivanov/redaction#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pavelivanov/redaction.git"
},
"bugs": {
"url": "https://github.com/pavelivanov/redaction/issues"
},
"keywords": [
"redaction",
"react",
"redux",
"action",
"reducer",
"creator",
"constants",
"dispatch"
],
"files": [
"lib",
"dist"
],
"license": "ISC",
"module": "dist/index.es.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "cross-env TEST=1 jest --bail --colors",
"build": "rimraf ./dist && rimraf ./lib && rollup -c",
"watch": "rollup -cw",
"prepublish": "npm run build && npm run test"
},
"peerDependencies": {
"react": "^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0",
"react-dom": "^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0",
"redux": "^3.0.0 || ^4.0.0-0",
"react-redux": "^5.0.0 || ^6.0.0 || ^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.7",
"@babel/core": "^7.12.7",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-destructuring": "^7.12.1",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.7.7",
"@testing-library/react-hooks": "^3.2.1",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"jest": "^24.9.0",
"rimraf": "^3.0.2",
"rollup": "^2.34.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-typescript2": "^0.26.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/react-redux": "^7.1.11"
}
}