-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
{
"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"
},
"author": "Google Inc.",
"contributors": [
{
"name": "Jon Wayne Parrott",
"email": "[email protected]"
},
{
"name": "Jonathan Simon",
"email": "[email protected]"
},
{
"name": "Jason Dobry",
"email": "[email protected]"
}
],
"license": "Apache Version 2.0",
"semistandard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
]
},
"dependencies": {
"@google-cloud/speech": "^0.7.0",
"@google-cloud/translate": "^0.7.0",
"express": "^4.14.0",
"sqlite3": "^3.1.8",
"yargs": "6.6.0",
"body-parser": "~1.17.1"
},
"devDependencies": {
"mocha": "^3.0.2",
"nodejs-repo-tools": "git+https://[email protected]/GoogleCloudPlatform/nodejs-repo-tools.git",
"supertest": "^2.0.0"
},
"engines": {
"node": ">=4.3.2"
}
}