-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "redux-actions-promise-wrapper",
"version": "1.1.0",
"description": "Type safe wrapper for redux actions (compatible with redux-saga)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc & jest",
"test": "jest",
"watch-test": "jest --watchAll",
"build-docs": "rimraf docs && typedoc --options typedoc.json src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thu-san/redux-actions-promise-wrapper.git"
},
"keywords": [
"redux",
"redux-saga",
"redux-actions",
"actions",
"typescript",
"react",
"typesafe-actions",
"typesafe"
],
"author": "thusan",
"license": "MIT",
"bugs": {
"url": "https://github.com/thu-san/redux-actions-promise-wrapper/issues"
},
"homepage": "https://github.com/thu-san/redux-actions-promise-wrapper#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.11",
"babel-jest": "^24.5.0",
"coveralls": "^3.0.3",
"istanbul": "^0.4.5",
"jest": "^24.5.0",
"ts-jest": "^24.0.0",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.14.2",
"typescript": "^3.3.3333"
},
"dependencies": {
"redux-saga": "^1.0.2"
}
}