-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.1 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
{
"scripts": {
"test": "./node_modules/.bin/mocha",
"test-cov": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && ./node_modules/.bin/istanbul report html",
"jshint": "./node_modules/.bin/jshint ."
},
"name": "tradity-bus",
"version": "1.0.1",
"description": "Module for generic communication between remote Node.js instances",
"main": "index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tradity/tradity-bus.git"
},
"keywords": [
"networking",
"cluster",
"node",
"messaging"
],
"author": "Anna Henningsen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tradity/tradity-bus/issues"
},
"homepage": "https://github.com/tradity/tradity-bus#readme",
"devDependencies": {
"coveralls": "^2.11.6",
"istanbul": "*",
"jshint": "*",
"mocha": "*"
},
"dependencies": {
"cytoscape": "^2.5.0",
"debug": "^2.2.0",
"lodash": "^4.0.0",
"object-hash": "^1.0.0",
"promise-events": "^0.1.2"
}
}