-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.74 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
{
"author": "Jason Williscroft",
"bugs": {
"url": "https://github.com/karmaniverous/metastructure-template/issues"
},
"description": "A configuration-driven AWS Organization reference infrastructure. Powered by Metastructure.",
"devDependencies": {
"@types/node": "^22.3.0",
"auto-changelog": "^2.4.0",
"lefthook": "^1.7.12",
"license-check-and-add": "^4.0.5",
"metastructure": "^0.11.0",
"release-it": "^17.6.0"
},
"homepage": "https://github.com/karmaniverous/metastructure-template#readme",
"keywords": [
"code-generation",
"template",
"infrastructure",
"aws",
"devops",
"typescript",
"terraform",
"sdlc"
],
"license": "BSD-3-Clause",
"name": "@karmaniverous/metastructure-template",
"publishConfig": {
"access": "public"
},
"release-it": {
"git": {
"changelog": "nlx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/main/templates/changelog-compact.hbs",
"commitMessage": "chore: release v${version}",
"requireBranch": "main"
},
"github": {
"release": true
},
"hooks": {
"after:init": [
"npm run lint"
],
"after:release": [
"git switch -c release/${version}",
"git push -u origin release/${version}",
"git switch ${branchName}"
]
},
"npm": {
"publish": false
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/karmaniverous/metastructure-template.git"
},
"scripts": {
"license": "license-check-and-add",
"release": "release-it",
"release:pre": "release-it --no-git.requireBranch --github.prerelease --preRelease"
},
"type": "module",
"version": "0.0.0"
}