-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.72 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
{
"name": "studio-cluster",
"version": "0.3.8",
"description": "Cluster (rpc) plugin for studio",
"author": {
"name": "Erich Oliveira",
"url": "http://ericholiveira.com"
},
"scripts": {
"test": "(node ./tests/testOfBasicRemoteRedis.js &) && (node ./tests/testOfBasicRemoteService.js &) && (sleep 5) && grunt all",
"prod": "(node ./tests/testOfBasicRemoteRedis.js &) && (node ./tests/testOfBasicRemoteService.js &) && (sleep 5) && grunt prod"
},
"keywords": [
"functional",
"programming",
"async",
"generators",
"micro-services",
"micro-service",
"micro",
"service",
"studio",
"cluster",
"rpc",
"remote procedure call",
"service discovery"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ericholiveira/studio-cluster.git"
},
"main": "./src/index.js",
"readmeFilename": "README.md",
"devDependencies": {
"chai": "^3.4.1",
"co": "^4.5.1",
"express": "^4.13.3",
"grunt": "0.4.x",
"grunt-cli": "0.1.13",
"grunt-concurrent": "1.0.0",
"grunt-contrib-copy": "0.8.2",
"grunt-contrib-jshint": "0.12.0",
"grunt-contrib-watch": "0.6.1",
"grunt-exec": "0.4.6",
"grunt-execute": "0.2.2",
"grunt-express-server": "0.4.19",
"grunt-istanbul": "^0.6.1",
"grunt-jasmine-node": "0.2.1",
"grunt-jasmine-node-coverage": "0.2.0",
"grunt-mocha-test": "^0.12.7",
"grunt-release": "0.13.0",
"mocha": "^2.4.5"
},
"dependencies": {
"debug": "^2.6.3",
"ioredis": "^1.15.1",
"multicast-ipc": "^1.0.5",
"node-uuid": "^1.4.7",
"primus": "^5.2.1",
"public-ip": "^1.2.0",
"serialize-error": "^1.1.0",
"studio": "^0.13.1",
"ws": "^1.0.1"
}
}