forked from wix-incubator/redux-saga-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.53 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
{
"name": "redux-saga-tester",
"version": "1.0.1",
"description": "Full redux environment testing helper for redux-saga",
"main": "dist/SagaTester.js",
"scripts": {
"lint": "eslint './src/**/*.js' './test/**/*.js' './examples/**/*.js'",
"examples": "mocha --compilers js:babel-register './examples/**/*.js'",
"prepublish": "npm test && npm run compile",
"test": "mocha --compilers js:babel-register && npm run lint",
"test-dev": "mocha --watch --compilers js:babel-register",
"compile": "babel -d dist/ src/",
"build": ":",
"release": "wnpm-release --no-shrinkwrap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wix/redux-saga-tester.git"
},
"keywords": [
"redux-saga",
"test"
],
"author": "Guy Benron",
"license": "MIT",
"bugs": {
"url": "https://github.com/wix/redux-saga-tester/issues"
},
"homepage": "https://github.com/wix/redux-saga-tester#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.5.1",
"babel-register": "^6.24.1",
"babel-runtime": "^6.11.6",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^3.19.0",
"immutable": "^3.8.2",
"mocha": "^3.4.1",
"nock": "^9.0.13",
"node-fetch": "^1.6.3",
"redux": "^3.6.0",
"redux-saga": "^0.15.3",
"wnpm-ci": "^6.2.52"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {}
}