-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.98 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"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 ${SCRIPT:-app.js}",
"test": "ava -t 30s --tap test/*.test.js | tap-dot",
"cover": "nyc --cache npm test; nyc report --reporter=html",
"init-cloudsql": "node books/model-cloudsql.js"
},
"author": "Google Inc.",
"contributors": [
{
"name": "Jon Wayne Parrott",
"email": "jonwayne@google.com"
},
{
"name": "Jonathan Simon",
"email": "jbsimon@google.com"
},
{
"name": "Jason Dobry",
"email": "jdobry@google.com"
},
{
"name": "Ace Nassri",
"email": "anassri@google.com"
}
],
"license": "Apache-2.0",
"semistandard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
]
},
"dependencies": {
"@google-cloud/debug-agent": "~1.0.0",
"@google-cloud/trace-agent": "~1.0.4",
"@google-cloud/datastore": "~1.0.0",
"@google-cloud/storage": "~1.1.0",
"@google-cloud/pubsub": "~0.10.0",
"async": "~2.3.0",
"body-parser": "~1.17.1",
"connect-memcached": "~0.2.0",
"express": "~4.15.2",
"express-session": "~1.15.2",
"express-winston": "~2.3.0",
"jade": "~1.11.0",
"lodash": "~4.17.4",
"mongodb": "~2.2.25",
"multer": "~1.3.0",
"mysql": "~2.13.0",
"nconf": "~0.8.4",
"passport": "~0.3.2",
"passport-google-oauth20": "~1.0.0",
"prompt": "~1.0.0",
"request": "~2.81.0",
"winston": "~2.3.1"
},
"devDependencies": {
"ava": "~0.19.1",
"nodejs-repo-tools": "git+https://git@github.com/GoogleCloudPlatform/nodejs-repo-tools.git",
"proxyquire": "~1.7.11",
"sinon": "~2.1.0",
"supertest": "~3.0.0",
"tap-dot": "~1.0.5"
},
"engines": {
"node": ">=4.3.2"
}
}