forked from techpivot/terraform-module-releaser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.41 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "terraform-module-releaser",
"description": "GitHub Actions TypeScript template",
"version": "1.6.0",
"author": "virgofx",
"type": "module",
"main": "lib/index.js",
"homepage": "https://github.com/techpivot/terraform-module-releaser",
"repository": {
"type": "git",
"url": "git+https://github.com/techpivot/terraform-module-releaser.git"
},
"bugs": {
"url": "https://github.com/techpivot/terraform-module-releaser/issues"
},
"keywords": ["terraform", "module", "releaser", "github-action", "monorepo"],
"license": "MIT",
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"prettier": {
"overrides": [
{
"files": "*.md",
"options": {
"printWidth": 120,
"proseWrap": "always"
}
}
]
},
"scripts": {
"bundle": "npm run check:fix && npm run package",
"check": "biome check ./src",
"check:fix": "biome check --write --unsafe .",
"dev:parse-modules": "tsx scripts/dev-parse-modules.ts",
"textlint": "textlint -c .github/linters/.textlintrc **/*.md",
"textlint:fix": "textlint -c .github/linters/.textlintrc --fix **/*.md",
"typecheck": "tsc --noEmit",
"package": "ncc build src/index.ts --source-map -o dist",
"test": "vitest run --coverage",
"test:watch": "vitest",
"coverage": "make-coverage-badge --output-path ./assets/coverage-badge.svg",
"terraform-docs-version": "gh api repos/terraform-docs/terraform-docs/releases/latest --jq '.tag_name'",
"changelog:test": "node .github/scripts/changelog.js 10.0.0"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@octokit/core": "^7.0.2",
"@octokit/plugin-paginate-rest": "^13.0.1",
"@octokit/plugin-rest-endpoint-methods": "^16.0.0",
"@octokit/request-error": "^7.0.0",
"minimatch": "^10.0.1",
"p-limit": "^6.2.0",
"which": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@octokit/types": "^14.0.0",
"@octokit/webhooks-types": "^7.6.1",
"@types/node": "^22.15.29",
"@types/which": "^3.0.4",
"@vercel/ncc": "^0.38.3",
"@vitest/coverage-v8": "^3.1.3",
"make-coverage-badge": "^1.2.0",
"openai": "latest",
"textlint": "^14.8.0",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-terminology": "^5.2.12",
"ts-deepmerge": "^7.0.2",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.0.5"
}
}