forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 789 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 789 Bytes
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
{
"name": "appengine-pubsub",
"description": "Node.js Google Cloud PubSub sample for Google App Engine",
"version": "0.0.1",
"private": true,
"license": "Apache Version 2.0",
"author": "Google Inc.",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"start": "node app.js",
"test": "mocha test/*.test.js --timeout=30000 --exit"
},
"dependencies": {
"@google-cloud/pubsub": "^1.0.0",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"google-auth-library": "^6.0.0",
"path": "^0.12.7",
"pug": "^2.0.1",
"wait-port": "^0.2.7"
},
"devDependencies": {
"jsonwebtoken": "^8.5.1",
"chai": "^4.2.0",
"mocha": "^7.0.0",
"sinon": "^9.0.0",
"uuid": "^8.0.0",
"supertest": "^4.0.2",
"proxyquire": "^2.1.3"
}
}