-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "redux-saga-mock",
"version": "1.2.0",
"description": "Testing helper for redux-saga",
"main": "dist/mockSaga.js",
"scripts": {
"prepublish": "npm test && npm run compile",
"test": "BABEL_ENV='test' mocha --compilers js:babel-register",
"compile": "babel -d dist/ src/",
"build": ":"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digitalidentitysa/redux-saga-mock.git"
},
"keywords": [
"redux-saga",
"test"
],
"author": "Marco Polci",
"license": "MIT",
"bugs": {
"url": "https://github.com/digitalidentitysa/redux-saga-mock/issues"
},
"homepage": "https://github.com/digitalidentitysa/redux-saga-mock#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.14.0",
"babel-plugin-rewire": "^1.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-2": "^6.13.0",
"babel-register": "^6.14.0",
"babel-runtime": "^6.11.6",
"chai": "^3.5.0",
"mocha": "^3.0.2",
"redux": "^3.6.0",
"redux-saga": "^0.11.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"lodash": "^4.17.2"
}
}