-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 870 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 870 Bytes
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": "net-pubsub",
"version": "0.0.2",
"description": "pub-sub for node.js and redis with network supports",
"main": "index.js",
"scripts": {
"simple": "babel-watch test/simple.js",
"rest": "babel-watch test/rest",
"socket": "babel-watch test/socket",
"socket_client": "babel-watch test/socket_client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackey/pubsub.git"
},
"keywords": [
"pub/sub"
],
"author": "jackey <jackey@fumer.cm>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jackey/pubsub/issues"
},
"homepage": "https://github.com/jackey/pubsub#readme",
"dependencies": {
"bluebird": "^3.4.0",
"body-parser": "^1.15.1",
"express": "^4.14.0",
"redis": "^2.6.2"
},
"devDependencies": {
"babel-core": "^6.9.1",
"babel-watch": "^2.0.2"
}
}