-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.04 KB
/
package.json
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
31
{
"name": "cloud-jitr",
"version": "0.1.0",
"description": "CloudFormation template for setting up JITR in AWS IoT",
"main": "index.js",
"scripts": {
"create-stack": "npm run upload-lambda-to-s3 && node scripts/create-stack.js",
"delete-stack": "node scripts/delete-stack.js && npm run delete-lambda-from-s3",
"validate-stack": "node scripts/validate-stack.js",
"register-ca-cert": "scripts/register-ca-cert.sh",
"create-device-cert": "scripts/create-device-cert.sh",
"connect-device": "node scripts/connect-device.js",
"upload-lambda-to-s3": "scripts/upload-lambda-to-s3.sh",
"delete-lambda-from-s3": "scripts/delete-lambda-from-s3.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrodem/cloud-jitr.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mrodem/cloud-jitr/issues"
},
"homepage": "https://github.com/mrodem/cloud-jitr#readme",
"dependencies": {
"aws-iot-device-sdk": "^2.2.1",
"cfn": "^1.2.0",
"inquirer": "^5.2.0"
}
}