-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
18 lines (18 loc) · 1016 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "protobuf-aws-pub-sub",
"version": "0.0.1",
"description": "A simple set of sample code which connects to an AWS IoT Broker and sends a message formatted in ProtoBuf.",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js --endpoint 'av2doi16yktzo-ats.iot.us-east-1.amazonaws.com' --cert 'C:\\Code\\Personal\\example-protobuf-aws-pub-sub\\certs\\certificate.pem' --key 'C:\\Code\\Personal\\example-protobuf-aws-pub-sub\\certs\\private.key' --count 1 --topic hellokoster --message Hello",
"start-proto": "node src/index.js --endpoint 'av2doi16yktzo-ats.iot.us-east-1.amazonaws.com' --cert 'C:\\Code\\Personal\\example-protobuf-aws-pub-sub\\certs\\certificate.pem' --key 'C:\\Code\\Personal\\example-protobuf-aws-pub-sub\\certs\\private.key' --count 1 --topic hellokoster --message_type proto"
},
"author": "",
"license": "ISC",
"dependencies": {
"aws-crt": "^1.17.1",
"aws-iot-device-sdk-v2": "^1.15.0",
"protobufjs": "^7.2.4",
"yargs": "^16.2.0"
}
}