-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.13 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "cnn-messaging",
"version": "3.3.0",
"description": "A module for message publishing and subscription",
"main": "index.js",
"scripts": {
"build": "babel src -s -d lib && npm run docs",
"docs": "documentation build src/** -f md > API.md",
"flow": "flow",
"flowcov": "flow coverage",
"flowtypes": "flow-typed install",
"coverage": "NODE_ENV=test babel src -s -d lib && PINGINTERVAL=1000 istanbul cover _mocha -- --recursive test/ --timeout 10000",
"lint": "eslint .",
"test": "PINGINTERVAL=1000 _mocha --timeout 10000",
"ci": "npm run lint && npm run flowtypes && npm run flow && npm run build && npm run test",
"postinstall": "postinstall-build lib",
"example": "DEBUG=cnn* PORT=3000 node example/server.js",
"loadtest": "node example/loadserver.js"
},
"keywords": [
"cnn",
"messaging",
"events",
"amqp",
"rxjs",
"pubsub",
"work",
"queue",
"websocket",
"uws"
],
"author": "Ian Patton <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-env": "^1.4.0",
"babel-preset-flow": "^6.23.0",
"chai": "^4.1.2",
"cnn-metrics": "^0.5.0",
"coveralls": "^3.0.0",
"documentation": "^5.3.1",
"eslint": "^4.6.1",
"express": "^4.15.2",
"flow-bin": "^0.58.0",
"flow-typed": "^2.1.2",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.2.0",
"remap-istanbul": "^0.9.5",
"sinon": "^4.0.0"
},
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"amqplib": "^0.5.1",
"debug": "^3.0.1",
"postinstall-build": "^5.0.1",
"rxjs": "^5.3.0",
"uuid": "^3.0.1"
},
"optionalDependencies": {
"uws": "^9.14.0"
},
"directories": {
"example": "example",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cnnlabs/cnn-messaging.git"
},
"bugs": {
"url": "https://github.com/cnnlabs/cnn-messaging/issues"
},
"homepage": "https://github.com/cnnlabs/cnn-messaging#readme"
}