forked from wix-incubator/redux-saga-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.76 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
{
"name": "@moveaxlab/redux-saga-tester",
"version": "2.0.4",
"description": "Full redux environment testing helper for redux-saga",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "yarn build",
"build": "npm-run-all build:*",
"build:clean": "rimraf dist/",
"build:code": "rollup -c",
"test": "npm-run-all test:*",
"test:lint": "eslint --ext .ts .",
"test:types": "tsc -p tsconfig.json --noEmit",
"test:unit": "jest",
"fix:lint": "eslint --ext .ts --fix ."
},
"repository": {
"type": "git",
"url": "https://github.com/moveaxlab/redux-saga-tester.git"
},
"keywords": [
"redux-saga",
"test"
],
"author": "Guy Benron",
"contributors": [
"Furio Dipoppa <furio.dipoppa@moveax.it>",
"Michelle Laurenti <michelle.laurenti@moveax.it>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/moveaxlab/redux-saga-tester/issues"
},
"homepage": "https://github.com/moveaxlab/redux-saga-tester#readme",
"devDependencies": {
"@moveaxlab/eslint-config": "^0.4.0",
"@types/jest": "^26.0.15",
"@types/redux-saga": "^0.10.5",
"coveralls": "^3.1.0",
"eslint": "6.0.0",
"husky": "^4.3.0",
"jest": "^26.0.1",
"jest-extended": "^0.11.5",
"lint-staged": "^10.5.1",
"npm-run-all": "^4.1.5",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"rimraf": "^3.0.2",
"rollup": "^2.33.3",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-ts": "^1.3.7",
"ts-jest": "^26.4.4",
"typescript": "^3.7.5"
},
"peerDependencies": {
"redux": "^4.0.0",
"redux-saga": "^1.1.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}