-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
56 lines (56 loc) · 1.36 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
{
"name": "redux-saga-testing",
"version": "2.0.2",
"description": "A no-brainer way of testing your Sagas",
"main": "helper.js",
"types": "helper.d.ts",
"scripts": {
"test": "cross-env yarn build && npm run test-jest && npm run test-ava",
"test-jest": "cross-env jest --coverage",
"test-ava": "cross-env ava",
"test-jest-watch": "cross-env jest --watch",
"test-ava-watch": "cross-env ava -w",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/antoinejaussoin/redux-saga-testing.git"
},
"keywords": [
"redux-saga",
"sagas",
"saga",
"redux",
"testing",
"test",
"jest",
"mocha",
"ava",
"expect",
"sinon"
],
"author": "Antoine Jaussoin",
"license": "MIT",
"bugs": {
"url": "https://github.com/antoinejaussoin/redux-saga-testing/issues"
},
"homepage": "https://github.com/antoinejaussoin/redux-saga-testing#readme",
"devDependencies": {
"@ava/babel": "^2.0.0",
"@types/jest": "^27.4.0",
"@types/sinon": "^10.0.11",
"ava": "^3.15.0",
"cross-env": "^7.0.3",
"expect.js": "0.3.1",
"istanbul": "1.1.0-alpha.1",
"jest": "^27.5.1",
"redux-saga": "^1.1.3",
"sinon": "^13.0.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"jest": {
"rootDir": "jest"
}
}