This repository has been archived by the owner on May 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "react-connected-reducers",
"description": "Extends the Reducer React Hook to allow for components to share their reducer state with each other.",
"version": "0.3.0",
"main": "dist/index.js",
"scripts": {
"build": "node_modules/.bin/tsc",
"lint": "node_modules/.bin/eslint --ext=.ts,.tsx src test",
"test": "node_modules/.bin/mocha -r ts-node/register --extension ts,tsx --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/pmk1c/react-connected-reducers.git"
},
"keywords": [
"actions",
"components",
"react",
"reducers",
"redux",
"state"
],
"author": "Ruben Grimm <ruben.grimm@bmind.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pmk1c/react-connected-reducers/issues"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-spies": "^1.0.0",
"@types/mocha": "^5.2.6",
"@types/node": "^11.11.3",
"@types/react": "^16.8.8",
"@types/react-test-renderer": "^16.8.1",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"eslint": "^5.12.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"fast-check": "^1.12.1",
"mocha": "^6.1.3",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-test-renderer": "^16.8.4",
"ts-node": "^8.0.3",
"typescript": "^3.3.3333"
},
"peerDependencies": {
"react": ">=16.8"
}
}