-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.06 KB
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
{
"author": "Olivier Poitrey <rs@dailymotion.com>",
"name": "pushd",
"description": "Blazing fast multi-protocol mobile push notification service",
"version": "0.0.1",
"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"
},
"bin": "./pushd.coffee",
"directories":
{
"lib": "./lib"
},
"scripts":
{
"start": "sudo node server.js",
"test": "mocha --compilers coffee:coffee-script --reporter spec tests/*"
},
"engines":
{
"node": "~0.6.13"
},
"dependencies":
{
"coffee-script": "1.2.0",
"apn": "1.1.6",
"c2dm": "1.1.0",
"mpns": "1.0.0",
"async": ">=0.1.18",
"express": ">=2.5.8",
"hiredis": ">=0.1.14",
"redis": ">=0.7.1",
"netmask": "*"
},
"devDependencies":
{
"mocha": "*",
"should": "*"
}
}