-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 916 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
{
"name": "nodejs-getting-started",
"version": "1.0.0",
"description": "Who Up app to serve push notifications to APN servers",
"repository": "https://github.com/whou/whoup-node-push-server",
"private": true,
"scripts": {
"start": "node app.js",
"monitor": "nodemon app.js",
"deploy": "gcloud preview app deploy app.yaml",
"lint": "jshint --exclude-path=../.gitignore .",
"mocha": "mocha test/index.js -t 30000",
"test": "npm run lint && npm run mocha"
},
"author": "Who Up",
"contributors": [
{
"name": "Tai DupreeTan",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"apn": "^1.7.5",
"express": "^4.13.4",
"firebase": "^2.4.1",
"firebase-queue": "^1.2.1"
},
"devDependencies": {
"jshint": "^2.9.1",
"mocha": "^2.4.5",
"supertest": "^1.1.0"
},
"engines": {
"node": ">=0.12.7"
}
}