-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.19 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
{
"name": "rxjs-cluster",
"version": "0.3.15",
"description": "Use Node.js cluster support to parallize Rx",
"scripts": {
"build": "webpack --config webpack.config.js --progress --colors --watch",
"test": "mocha --compilers js:babel-core/register test/test.js",
"test:host": "env test=net port=8090 client=8091 mocha --compilers js:babel-core/register test/test.js",
"test:client": "env test=net port=8091 client=8091 mocha --compilers js:babel-core/register test/test.js",
"test:elect": "http localhost:8090/be/master & http localhost:8091/be/slave"
},
"main": "dist/rxjs-cluster.js",
"author": "Jonathan Dunlap <[email protected]>",
"repository": "jadbox/rxjs-cluster",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.0",
"connect-timeout": "^1.7.0",
"express": "^4.13.4",
"lodash": "^4.9.0",
"request-json": "^0.5.5",
"rx": "^4.0.8",
"string-hash": "^1.1.0",
"webpack": "^1.12.13"
},
"devDependencies": {
"babel-core": "^6.5.2",
"babel-loader": "^6.2.2",
"babel-plugin-transform-function-bind": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"babelify": "^7.2.0",
"mocha": "^2.4.5",
"path": "^0.12.7"
}
}