-
Notifications
You must be signed in to change notification settings - Fork 227
/
package.json
57 lines (57 loc) · 1.44 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
{
"author": "Olivier Poitrey <[email protected]>",
"name": "pushd",
"description": "Blazing fast multi-protocol mobile push notification service",
"version": "1.6.5",
"homepage": "https://github.com/rs/pushd",
"keywords": ["push", "notification", "apns", "c2dm", "mpns", "ios", "android", "windows", "phone"],
"repository":
{
"type": "git",
"url": "git://github.com/rs/pushd.git"
},
"preferGlobal": "true",
"bin":
{
"pushd-server": "./server.js"
},
"directories":
{
"lib": "./lib"
},
"scripts":
{
"start": "sudo node server.js",
"test": "mocha --compilers coffee:coffee-script/register --reporter spec tests/*.coffee"
},
"engines":
{
"node": "~0.10.0"
},
"dependencies":
{
"coffee-script": "~1.8.0",
"apn": "1.7.3",
"c2dm": "1.2.1",
"node-gcm": "0.12.0",
"mpns": "2.1.0",
"async": "~0.2.10",
"express": "~3.20.2",
"body-parser": "~1.9.0",
"hiredis": "~0.4.1",
"redis": "~1.0.0",
"netmask": "~1.0.4",
"winston": "~0.7.3",
"wns": "git+https://github.com/futurice/wns.git#28bfe39a3be8c64f3d72b7c7a5cac77c049b137a"
},
"devDependencies":
{
"mocha": "*",
"should": "*"
},
"licenses":
[{
"type": "MIT",
"url": "https://github.com/rs/pushd/raw/master/LICENSE"
}]
}