-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.83 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "tfc-output-action",
"version": "1.0.8",
"private": true,
"description": "Fetch output variable values from Terraform Cloud",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "tape -r ts-node/register/transpile-only test/*.test.ts",
"coverage": "nyc tape -r ts-node/register/transpile-only test/*.test.ts",
"format": "prettier --write src/*.ts test/*.ts",
"format:check": "prettier --check src/*.ts test/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/paambaati/tfc-output-action.git"
},
"keywords": [
"actions",
"terraform",
"terraform cloud",
"cdktf",
"tfc",
"output",
"variable"
],
"author": "GP <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "1.10.0",
"@types/is-uuid": "1.0.0",
"hook-std": "2.0.0",
"is-uuid": "1.0.2",
"node-fetch": "2.6.7",
"nyc": "15.1.0"
},
"devDependencies": {
"@google/semantic-release-replace-plugin": "1.1.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.7",
"@semantic-release/npm": "10.0.2",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/node": "18.15.11",
"@types/node-fetch": "2.6.2",
"@types/sinon": "10.0.13",
"@types/tape": "4.13.2",
"nock": "13.2.9",
"prettier": "2.8.7",
"semantic-release-export-data": "1.0.1",
"sinon": "14.0.1",
"tape": "5.6.1",
"to-readable-stream": "2.1.0",
"ts-node": "10.9.1",
"typescript": "5.0.3"
}
}