-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.02 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
{
"name": "notify",
"version": "0.0.1",
"description": "Realtime push notification service built on Primus.",
"main": "index.js",
"scripts": {
"start": "node index",
"test": "mocha",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --ui bdd -R spec -t 5000"
},
"repository": {
"type": "git",
"url": "https://github.com/mlebrun/notify.git"
},
"keywords": [
"sockets",
"redis",
"rabbitmq",
"push",
"notifications",
"realtime",
"notify"
],
"author": "Matt LeBrun",
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/mlebrun/notify/issues"
},
"dependencies": {
"debug": "~2.2.0",
"primus-emit": "^0.1.2",
"primus-rooms": "~3.3.0"
},
"devDependencies": {
"chai": "*",
"mocha": "*",
"sinon": "^1.17.0",
"istanbul": "^0.4.0",
"coveralls": "^2.11.5",
"primus": "^4.0.1",
"primus-emit": "~0.1.2",
"primus-rooms": "~3.3.0",
"ws": "~0.8.0"
}
}