forked from gregberge/push-notify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 995 Bytes
/
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
{
"name": "push-notify",
"version": "1.1.1",
"description": "Easily send notifications over multiple protocols.",
"keywords": [
"notification",
"push",
"apns",
"apn",
"c2dm",
"mpns",
"gcm"
],
"scripts": {
"test": "mocha --recursive test/unit"
},
"author": "Bergé Greg <[email protected]>",
"licence": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/neoziro/push-notify.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/neoziro/push-notify/issues"
},
"engines": {
"node": ">=0.6.5"
},
"dependencies": {
"apn": "^1.5.2",
"bluebird": "^2.1.3",
"c2dm": "^1.2.1",
"lodash": "^2.4.1",
"mpns": "^2.1.0",
"node-gcm": "^0.9.11",
"pipe-event": "^0.1.0",
"q": "^1.0.1",
"wns": "^0.5.3"
},
"devDependencies": {
"chai": "^1.9.1",
"mocha": "^1.20.1",
"sinon": "^1.10.2",
"sinon-chai": "^2.5.0"
}
}