-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
31 lines (31 loc) · 847 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
{
"name": "Locator",
"version": "0.1.0",
"description": "Sample implementation of a server that listens for Particle Cloud Geolocation events.",
"repository": "https://github.com/kwnevarez/particle-device-locator",
"private": true,
"scripts": {
"start": "node app.js",
"deploy": "gcloud app deploy app.yaml"
},
"author": "Google Inc.",
"contributors": [
{
"name": "Ken Nevarez",
"email": "[email protected]"
}
],
"license": "Apache Version 2.0",
"dependencies": {
"request": "^2.81.0",
"express": "^4.14.0",
"express-ws": "^3.0.0",
"express-session": "^1.15.1",
"body-parser": "^1.17.1",
"particle-api-js": "^6.4.3",
"ejs": "^2.5.6"
},
"engines": {
"node": ">=4.3.2"
}
}