redux-saga-testing
Version:
A no-brainer way of testing your Sagas
57 lines (56 loc) • 1.39 kB
JSON
{
"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://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/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"
}
}