forked from lablabs/setup-terraform-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1011 Bytes
/
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
37
38
{
"name": "setup-terraform-docs-action",
"version": "0.1.0",
"description": "Install and setup Terraform docs executable Action",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build index.js -o dist -m --no-source-map-register",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lablabs/setup-terraform-docs-action.git"
},
"keywords": [
"GitHub",
"Actions",
"Terraform",
"Terraform docs"
],
"author": "Labyrinth Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/lablabs/setup-terraform-docs-action/issues"
},
"homepage": "https://github.com/lablabs/setup-terraform-docs-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/tool-cache": "^1.0.1",
"@octokit/rest": "^18.0.6"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"eslint": "^7.11.0",
"jest": "^26.5.3"
}
}