-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "action-to-promise",
"version": "1.4.4",
"description": "Utility converting action to Promise in redux-saga environment.",
"main": "./.build/index.js",
"types": "./.build/index.d.ts",
"scripts": {
"prepublish": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ddziara/node-action-to-promise.git"
},
"keywords": [
"action",
"promise",
"redux-saga",
"saga",
"convert",
"transform"
],
"author": "Dariusz Dziara",
"license": "MIT",
"bugs": {
"url": "https://github.com/ddziara/node-action-to-promise/issues"
},
"homepage": "https://github.com/ddziara/node-action-to-promise#readme",
"dependencies": {
"handlebars": ">=4.3.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"jest": "^24.9.0",
"ts-jest": "^24.3.0",
"typescript": "^3.7.5"
},
"files": [
".build"
]
}