forked from monken/cfn-include
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.05 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.05 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
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
{
"name": "@znemz/cfn-include",
"version": "4.6.13",
"description": "Preprocessor for CloudFormation templates with support for loops and flexible include statements",
"keywords": [
"aws",
"cfn",
"cloudformation",
"include",
"executable-yaml",
"shebang",
"yaml",
"preprocessor",
"devops-tools",
"infrastructure-as-code"
],
"homepage": "https://github.com/brickhouse-tech/cfn-include#readme",
"bugs": {
"url": "https://github.com/brickhouse-tech/cfn-include/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/brickhouse-tech/cfn-include.git"
},
"license": "MIT",
"author": {
"name": "Nicholas McCready",
"email": "nemtcan@gmail.com"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./lib/*": {
"types": "./dist/lib/*.d.ts",
"import": "./dist/lib/*.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"cfn": "./bin/cfn",
"cfn-include": "./dist/cli.js",
"yaml": "./bin/yaml",
"yml": "./bin/yml"
},
"files": [
"dist/",
"bin/",
"scripts/postinstall.js",
"INSTALL.md"
],
"scripts": {
"better-audit": "better-npm-audit audit",
"build": "tsc",
"build:clean": "rm -rf dist && npm run build",
"postinstall": "node scripts/postinstall.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "sort-package-json",
"prepublishOnly": "npm run build:clean",
"serve": "serve ./t/fixtures -l 9999",
"test": "npm run build && run-p -r serve test:run",
"test:coverage": "npm run build && run-p -r serve test:coverage:run",
"test:coverage:run": "sleep 1 && vitest run --coverage",
"test:run": "sleep 1 && vitest run",
"test:watch": "npm run build && run-p -r serve vitest",
"typecheck": "tsc --noEmit"
},
"overrides": {
"fast-xml-parser": ">=5.5.6"
},
"dependencies": {
"@aws-sdk/client-cloudformation": "3",
"@aws-sdk/client-s3": "3",
"@znemz/cft-utils": "0.1",
"@znemz/sort-object": "3",
"aws-sdk-v3-proxy": "2.2.0",
"deepmerge": "^4.2.2",
"glob": "^13.0.0",
"jmespath": "^0.16.0",
"js-yaml": "^4.1.1",
"lodash": "^4.17.21",
"proxy-agent": "8.0.1",
"yargs": "~18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20",
"@commitlint/config-conventional": "^20",
"@eslint/js": "^10.0.1",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.23",
"@types/node": "^25.2.2",
"@vitest/coverage-v8": "^4.0.18",
"better-npm-audit": "3.11.0",
"commit-and-tag-version": "12",
"commitlint": "20",
"eslint": "10",
"eslint-config-prettier": "10",
"eslint-plugin-prettier": "5",
"globals": "^17.3.0",
"npm-run-all": "4.1.5",
"prettier": "3",
"serve": "14.2.6",
"sort-package-json": "3.6.1",
"typescript": "^6.0.2",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.19"
},
"originalAuthor": {
"name": "Moritz Onken",
"email": "onken@netcubed.de"
}
}