forked from balgamat/muezzin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.32 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
{
"name": "muezzin",
"version": "1.1.1",
"description": "The final, opinionated, solution to REST API calls based on `redux-saga`",
"main": "src/index.ts",
"scripts": {
"build": "yarn tsc",
"test": "jest",
"test:watch": "yarn test -- --watch",
"publish": "yarn build && npm version patch -f"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balgamat/muezzin.git"
},
"keywords": [
"muezzin",
"muezzinjs",
"muezzin-js",
"API",
"API call",
"REST",
"redux",
"redux-saga",
"data",
"get",
"post",
"patch",
"delete",
"opinionated"
],
"author": "Matěj Balga",
"license": "MIT",
"bugs": {
"url": "https://github.com/balgamat/muezzin/issues"
},
"homepage": "https://github.com/balgamat/muezzin#readme",
"devDependencies": {
"@redux-saga/testing-utils": "^1.1.3",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.22",
"@types/ramda": "^0.27.4",
"@types/react": "^16.9.35",
"@types/react-redux": "^7.1.9",
"@types/redux-saga": "^0.10.5",
"jest": "^26.0.1",
"ts-jest": "^26.0.0",
"typescript": "^3.9.2"
},
"dependencies": {
"axios": "^0.19.2",
"ramda": "^0.27.0"
},
"peerDependencies": {
"react": "^16.13.1",
"react-redux": "^7.2.0",
"redux-saga": "^1.1.3"
}
}