-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 760 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 760 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
31
{
"name": "ec2-run-instance-lambda",
"version": "1.0.1",
"description": "AWS Lambda function that runs an EC2 instance with parameters coming from an HTTP request",
"main": "index.js",
"scripts": {
"test": "exit 0;"
},
"repository": {
"type": "git",
"url": "https://github.com/renatoargh/ec2-run-instance-lambda.git"
},
"keywords": [
"ec2",
"run-instance",
"lambda",
"aws"
],
"author": "Renato Gama <renato@gammasoft.com.br>",
"license": "MIT",
"bugs": {
"url": "https://github.com/renatoargh/ec2-run-instance-lambda/issues"
},
"homepage": "https://github.com/renatoargh/ec2-run-instance-lambda",
"devDependencies": {
"aws-sdk": "^2.1.49"
},
"dependencies": {
"async": "^1.4.2"
}
}