-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 836 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 836 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
{
"name": "jobs",
"version": "1.0.0",
"description": "NodeJS IoT SDK v2 Jobs 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-sdk/client-iot": "^3",
"aws-iot-device-sdk-v2": "file:../../../../",
"yargs": "^16.2.0",
"uuid": "^8.3.2"
}
}