forked from wix-incubator/redux-saga-tester
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "@openpathsec/redux-saga-tester",
"version": "1.1.0",
"description": "Full redux environment testing helper for redux-saga",
"main": "dist/SagaTester.js",
"type": "module",
"scripts": {
"build": "babel -d dist/ src/",
"examples": "mocha './examples/**/*.js'",
"lint": "eslint './src/**/*.js' './test/**/*.js' './examples/**/*.js'",
"prepublishOnly": "npm test && npm run build",
"test": "mocha && npm run lint",
"test-dev": "mocha --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenPathSec/redux-saga-tester.git"
},
"keywords": [
"redux-saga",
"test"
],
"author": "Guy Benron",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenPathSec/redux-saga-tester/issues"
},
"homepage": "https://github.com/OpenPathSec/redux-saga-tester#readme",
"peerDependencies": {
"redux": "^5.0.0",
"redux-saga": "^1.2.3"
},
"devDependencies": {
"@babel/cli": "7.23.4",
"@babel/eslint-parser": "7.23.3",
"@babel/plugin-transform-runtime": "^7.23.6",
"@babel/preset-env": "7.23.6",
"chai": "4.3.10",
"chai-as-promised": "7.1.1",
"eslint": "8.56.0",
"immutable": "5.0.0-beta.4",
"mocha": "10.2.0",
"nock": "13.4.0",
"node-fetch": "2.7.0",
"redux": "5.0.0",
"redux-saga": "1.2.3"
},
"files": [
"/dist"
]
}