-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 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
44
{
"name": "redux-test-saga",
"version": "1.1.3",
"description": "Easy redux saga testing",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src/**/*.ts --fix",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gareththegeek/redux-test-saga.git"
},
"keywords": [
"redux",
"saga",
"test"
],
"author": "gareththegeek",
"license": "MIT",
"bugs": {
"url": "https://github.com/gareththegeek/redux-test-saga/issues"
},
"homepage": "https://github.com/gareththegeek/redux-test-saga#readme",
"devDependencies": {
"@types/jest": "^26.0.5",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.0",
"prettier": "^2.0.5",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7"
},
"dependencies": {
"redux": "^4.0.5",
"redux-saga": "^1.1.3"
}
}