-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.57 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
58
59
60
61
62
63
64
65
{
"name": "nodejs-getting-started",
"version": "1.0.0",
"description": "End to end sample for running Node.JS applications on Google Cloud Platform",
"repository": "https://github.com/GoogleCloudPlatform/nodejs-getting-started",
"private": true,
"scripts": {
"start": "node app.js",
"monitor": "nodemon app.js",
"deploy": "gcloud app deploy app.yaml",
"test": "mocha test/index.js -t 30000",
"init-cloudsql": "node wine/model-cloudsql.js"
},
"author": "Google Inc.",
"contributors": [
{
"name": "Bill Shannon",
"email": "bill.shannon@ymail.com"
},
{
"name": "Jon Wayne Parrott",
"email": "jonwayne@google.com"
},
{
"name": "Jonathan Simon",
"email": "jbsimon@google.com"
},
{
"name": "Jason Dobry",
"email": "jdobry@google.com"
}
],
"license": "Apache Version 2.0",
"semistandard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
]
},
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"@google-cloud/datastore": "^0.1.1",
"jade": "^1.11.0",
"kerberos": "^0.0.21",
"lodash": "^4.14.2",
"mongodb": "^2.2.5",
"mysql": "^2.11.1",
"nconf": "^0.8.4",
"prompt": "^1.0.0"
},
"devDependencies": {
"mocha": "^3.0.2",
"nodejs-repo-tools": "git+https://github.com/GoogleCloudPlatform/nodejs-repo-tools.git#21daa823090c43fb667157c8b5b0c3b7f45a8357",
"proxyquire": "^1.7.10",
"sinon": "^1.17.5"
},
"engines": {
"node": ">=4.3.2"
}
}