-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 886 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 886 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
34
35
{
"name": "nodejs-docs-samples-iot-manager",
"version": "0.0.1",
"description": "Example of Cloud IoT Core gateways feature",
"main": "manager.js",
"license": "Apache-2.0",
"author": "Google LLC",
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "repo-tools test install --cmd=npm -- run unit-test",
"unit-test": "mocha *.test.js --timeout=600000"
},
"dependencies": {
"googleapis": "^39.0.0",
"jsonwebtoken": "^8.3.0",
"mqtt": "^2.18.8",
"yargs": "^13.2.2"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^3.0.0",
"mocha": "^6.0.0",
"@google-cloud/pubsub": "^0.28.0",
"uuid": "^3.1.0"
},
"cloud-repo-tools": {
"requiresKeyFile": true,
"requiresProjectId": true
}
}