-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 982 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 982 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "terraform-aws-serverless",
"version": "1.0.0",
"description": "Infrastructure support for Serverless framework apps, done the right way",
"main": "index.js",
"repository": "git@github.com:FormidableLabs/terraform-aws-serverless.git",
"author": "Ryan Roemer <ryan.roemer@formidable.com>",
"license": "MIT",
"private": true,
"scripts": {
"build:format": "terraform fmt",
"build:toc-files": "find . -name '*.md' -type f -not -path './node_modules/*' -exec grep -l '<!-- START doctoc' {} \\;",
"build:toc": "doctoc --notitle $(yarn -s build:toc-files)",
"build:copy": "echo modules/* | xargs -n 1 cp variables.tf",
"build": "yarn build:copy && yarn build:format && yarn build:toc",
"check:git-dirty": "test -z \"$(git status --porcelain)\" || (echo \"ERROR: Found git dirty files:\n$(git status --porcelain)\" && exit 1)",
"check:ci": "yarn build && yarn check:git-dirty"
},
"devDependencies": {
"doctoc": "^1.4.0"
}
}