-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 803 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 803 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": "shadow",
"version": "1.0.0",
"description": "NodeJS IoT SDK v2 Shadow Sample",
"homepage": "https://github.com/aws/aws-iot-device-sdk-js-v2",
"repository": {
"type": "git",
"url": "git+https://github.com/aws/aws-iot-device-sdk-js-v2.git"
},
"contributors": [
"AWS SDK Common Runtime Team <aws-sdk-common-runtime@amazon.com>"
],
"license": "Apache-2.0",
"main": "./dist/index.js",
"scripts": {
"tsc": "tsc",
"prepare": "npm run tsc"
},
"devDependencies": {
"@types/node": "^14.18.63",
"@types/uuid": "^8.3.4",
"typescript": "^4.7.4"
},
"dependencies": {
"aws-iot-device-sdk-v2": "file:../../../../",
"yargs": "^16.2.0",
"uuid": "^8.3.2"
}
}