-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
36 lines (36 loc) · 1.01 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
32
33
34
35
36
{
"name": "openapi-tf-example",
"version": "1.0.0",
"description": "OpenAPI example with Terraform",
"main": "index.js",
"scripts": {
"dev-infra": "gulp infra --env dev",
"dev-init": "gulp init --env dev",
"dev-destroy": "gulp destroy --env dev",
"dev-output": "gulp output --env dev",
"dev-output-sam": "aws cloudformation --region us-east-1 describe-stacks --stack-name dev-example-sam-app --profile multithreadlabs-dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpstreef/openapi-tf-example.git"
},
"keywords": [
"openapi",
"terraform",
"apigateway"
],
"author": "Rolf Streefkerk",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/rpstreef/openapi-tf-example/issues"
},
"homepage": "https://github.com/rpstreef/openapi-tf-example#readme",
"dependencies": {},
"devDependencies": {
"gulp": "^4.0.0",
"gulp-if": "^2.0.2",
"gulp-install": "^1.1.0",
"gulp-shell": "^0.7.0",
"minimist": "^1.2.0"
}
}