forked from prdn/pigato
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.17 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
{
"name": "@rabbotio/pigato",
"version": "0.0.47",
"private": false,
"description": "An high-performance Node.js microservices framework based on ZeroMQ",
"author": "prdn <[email protected]> (http://ardoino.com/)",
"keywords": [
"pigato",
"nodejs",
"zmq",
"zeromq",
"0mq",
"request-reply",
"amqp",
"mdp",
"micro-services"
],
"dependencies": {
"async": "~2.6.0",
"debug": "~3.1.0",
"es6-shim": "^0.35.3",
"lodash": "~4.17.4",
"readable-stream": "2.3.3",
"semver": "^5.4.1",
"uuid": "^3.1.0",
"zmq": "~2.15.3"
},
"engine": {
"node": ">=0.10"
},
"main": "index.js",
"directories": {
"example": "examples",
"test": "test"
},
"devDependencies": {
"chai": "~4.1.2",
"mocha": "~4.0.1"
},
"scripts": {
"test": "make test",
"lint": "eslint --config .eslintrc --fix index.js lib/ test/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/prdn/pigato.git"
},
"bugs": {
"url": "https://github.com/prdn/pigato/issues"
},
"homepage": "https://github.com/prdn/pigato",
"optionalDependencies": {
"eslint": "~4.11.0"
}
}