-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.64 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
{
"name": "@teroneko/redux-saga-promise",
"version": "3.0.1",
"description": "Create actions that return promises, which are resolved or rejected by a redux saga",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"clean": "rm -r dist",
"build": "npx tsc",
"pretest": "npm run build",
"test": "npx jest",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepublishOnly": "npm run changelog && npm run clean && npm run test"
},
"keywords": [
"redux",
"saga",
"action",
"promise",
"promises",
"resolve",
"reject",
"typescript",
"ts",
"redux toolkit",
"toolkit",
"reduxjs",
"createAction"
],
"author": "teroneko",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.2",
"eslint-plugin-import": "^2.29.1",
"jest": "^27.5.1",
"ts-jest": "^27.1.5",
"typescript": "^4.9.5"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.7",
"@types/lodash": "^4.17.4",
"lodash": "^4.17.21",
"redux": "^4.2.1",
"redux-saga": "^1.3.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teroneko/redux-saga-promise.git"
},
"bugs": {
"url": "https://github.com/teroneko/redux-saga-promise/issues"
},
"homepage": "https://github.com/teroneko/redux-saga-promise#readme"
}