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
29 lines (29 loc) · 717 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 717 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
{
"name": "nodejs-docs-samples-iot-manager",
"version": "0.0.1",
"description": "Example of Cloud IoT device administration",
"main": "manager.js",
"license": "Apache-2.0",
"author": "Google LLC",
"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",
"@google-cloud/pubsub": "^1.2.0",
"googleapis": "^51.0.0",
"yargs": "^15.1.0"
},
"devDependencies": {
"mocha": "^7.0.0",
"uuid": "^8.0.0"
}
}