-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.35 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.35 KB
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
{
"name": "@simprl/dynamic-reducer",
"version": "1.0.3",
"description": "dynamicReducer - reducer for Redux in which you can add or remove child reducers",
"main": "lib/index.js",
"module": "es/index.js",
"types": "dts/index.d.ts",
"files": [
"lib",
"es",
"dts"
],
"scripts": {
"build": "tsc && rollup -c rollup.config.js",
"test": "jest",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simprl/dynamic-reducer.git"
},
"keywords": [
"redux",
"dynamic",
"reducer",
"add",
"remove",
"hook"
],
"author": "simprl",
"license": "MIT",
"bugs": {
"url": "https://github.com/simprl/dynamic-reducer/issues"
},
"homepage": "https://github.com/simprl/dynamic-reducer#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"@types/redux": "^3.6.0",
"babel-jest": "^27.0.6",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "latest",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "2.22.1",
"jest": "^27.0.6",
"redux": "^4.1.1",
"rollup": "^2.33.3",
"typescript": "^4.3.4"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"redux": "^4.0.5"
}
}