-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 3.77 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"author": "Jason Williscroft",
"bin": {
"metastructure": "./dist/metastructure.cli.mjs"
},
"bugs": {
"url": "https://github.com/karmaniverous/metastructure/issues"
},
"dependencies": {
"@karmaniverous/handlebars": "^0.5.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"execa": "^9.3.0",
"fs-extra": "^11.2.0",
"is-what": "^5.0.2",
"license-check-and-add": "^4.0.5",
"lodash": "^4.17.21",
"pkg-dir": "^8.0.0",
"yaml": "^2.5.0",
"zod": "^3.23.8"
},
"description": "A command-line tool that can generate & manage a complex AWS infrastructure with a single YAML config file and a handful of Handlebars templates.",
"devDependencies": {
"@commander-js/extra-typings": "^12.1.0",
"@eslint/js": "^9.7.0",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/chai": "^4.3.16",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint-plugin-mocha": "^10.4.0",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.7",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.12",
"auto-changelog": "^2.4.0",
"chai": "^5.1.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.4.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tsdoc": "^0.3.0",
"jsdom-global": "^3.0.2",
"knip": "^5.27.0",
"lefthook": "^1.7.7",
"mocha": "^10.7.0",
"nyc": "^17.0.0",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"rimraf": "^6.0.1",
"rollup": "^4.19.0",
"rollup-plugin-dts": "^6.1.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"tsx": "^4.16.2",
"typescript": "^5.5.4",
"typescript-eslint": "^7.17.0"
},
"exports": {
".": {
"import": {
"default": "./dist/index.mjs",
"types": "./dist/index.d.mts"
}
}
},
"files": [
"dist"
],
"homepage": "https://github.com/karmaniverous/metastructure#readme",
"keywords": [
"aws",
"code-generation",
"devops",
"infrastructure",
"sdlc",
"template",
"terraform",
"typescript"
],
"license": "BSD-3-Clause",
"module": "dist/index.mjs",
"name": "metastructure",
"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",
"npm run build"
],
"after:release": [
"git switch -c release/${version}",
"git push -u origin release/${version}",
"git switch ${branchName}"
]
},
"npm": {
"publish": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/karmaniverous/metastructure.git"
},
"scripts": {
"build": "rimraf dist && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"cli": "tsx src/cli/metastructure",
"cli:dist": "node dist/metastructure.cli.mjs",
"knip": "knip",
"lint": "eslint src/** && prettier -c src",
"lint:fix": "eslint --fix src/** && prettier --write src",
"release": "release-it",
"release:pre": "release-it --no-git.requireBranch --github.prerelease --preRelease",
"test": "cross-env LOG_LEVEL=debug nyc mocha"
},
"type": "module",
"types": "dist/index.d.ts",
"version": "0.11.1"
}