-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
{
"name": "redux-saga-debounced-channel",
"version": "1.1.0",
"description": "Debounced channel for Redux Saga",
"contributors": [
"Nicholas Gonzalez <[email protected]>",
"David Idol <[email protected]>"
],
"main": "dist/index.js",
"umd:main": "dist/redux-combine-reducers-immutable.umd.production.js",
"module": "dist/redux-combine-reducers-immutable.es.production.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "npm run lint && tsdx test",
"prettier": "pretty-quick --staged",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit --listFiles false",
"lint": "tslint -c ./tslint.json --project ./tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/di-ng/redux-saga-debounced-channel.git"
},
"keywords": [
"debounce",
"channel",
"redux",
"saga"
],
"engines": {
"node": ">=6.9.1",
"npm": ">=3.0.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/di-ng/redux-saga-debounced-channel/issues"
},
"homepage": "https://github.com/di-ng/redux-saga-debounced-channel#readme",
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.6.8",
"@types/redux-mock-store": "^1.0.1",
"husky": "^3.0.1",
"immutable": "^4.0.0-rc.12",
"prettier": "^1.18.2",
"redux": "^4.0.4",
"redux-mock-store": "^1.5.3",
"redux-saga": "^1.0.2",
"redux-saga-test-plan": "^4.0.0-beta.3",
"pretty-quick": "^1.11.1",
"tsdx": "^0.7.2",
"tslib": "^1.10.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
},
"peerDependencies": {
"redux-saga": ">=0.16.0"
}
}