forked from antoinejaussoin/redux-saga-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.54 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
64
65
66
67
68
69
{
"name": "redux-saga-testing",
"version": "2.0.0",
"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://antoinejaussoin@github.com/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": "^2.4.0",
"cross-env": "^6.0.3",
"expect.js": "0.3.1",
"istanbul": "1.1.0-alpha.1",
"jest": "^24.9.0",
"redux-saga": "^1.1.3",
"sinon": "^7.5.0",
"@types/jest": "^24.0.23",
"@types/sinon": "^7.5.1",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.2"
},
"jest": {
"rootDir": "jest"
},
"ava": {
"files": [
"ava/*.ts"
],
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"failFast": true,
"verbose": true
}
}