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
30 lines (30 loc) · 777 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 777 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
{
"author": "Google Inc.",
"version": "0.0.1",
"description": "MQTT Example for Google Cloud IoT Core using NodeJS.",
"license": "Apache-2.0",
"main": "cloudiot_mqtt_example_nodejs.js",
"name": "nodejs-docs-samples-iot-mqtt-example",
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "npm -- run system-test",
"system-test": "mocha system-test/*.test.js --timeout=600000"
},
"dependencies": {
"@google-cloud/iot": "^2.0.0",
"jsonwebtoken": "^8.5.0",
"mqtt": "^4.0.0",
"yargs": "^15.0.0"
},
"devDependencies": {
"@google-cloud/pubsub": "^1.0.0",
"mocha": "^7.0.0",
"uuid": "^7.0.0"
}
}