-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.01 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": "redux-observable-test-helpers",
"version": "1.3.28",
"description": "Unit test helpers for redux/rx",
"main": "lib/index.js",
"scripts": {
"build": "npm run build:cjs",
"build:cjs": "babel src -d lib",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/epic-helper.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/epic-helper.min.js",
"eslint": "3.2.2",
"lint": "eslint src",
"shipit": "npm run clean && npm run build && npm test && scripts/preprepublish.sh && npm publish",
"clean": "rimraf lib temp",
"test": "mocha --compilers js:babel-core/register --colors ./test/spec.js"
},
"files": [
"dist",
"lib",
"README.md"
],
"peerDependencies": {
"redux": "^3.6.0",
"redux-observable": "^0.13.0",
"rxjs": "^5.1.0",
"sinon": "^2.2.0"
},
"devDependencies": {
"babel-cli": "6.11.4",
"babel-eslint": "7.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-es2015-modules-commonjs": "6.11.5",
"babel-plugin-transform-function-bind": "6.8.0",
"babel-plugin-transform-object-rest-spread": "6.8.0",
"babel-polyfill": "6.13.0",
"babel-preset-es2015": "6.13.2",
"chai": "3.4.1",
"conventional-changelog-cli": "1.2.0",
"cross-env": "3.1.3",
"dasherize": "2.0.0",
"eslint": "1.7.2",
"eslint-loader": "1.1.0",
"expose-loader": "^0.7.1",
"mocha": "2.3.4",
"redux": "3.6.0",
"redux-observable": "^0.13.0",
"rxjs": "^5.1.0",
"sinon": "^2.2.0",
"symbol-observable": "1.0.1",
"webpack": "^1.13.1",
"yargs": "3.32.0"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/cmelion/redux-observable-test-helpers.git"
},
"keywords": [
"redux",
"rx"
],
"author": "Charles Fulnecky",
"license": "ISC",
"bugs": {
"url": "https://github.com/cmelion/redux-observable-test-helpers/issues"
},
"homepage": "https://github.com/cmelion/redux-observable-test-helpers#readme"
}