-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.64 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.64 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
{
"name": "@znemz/cft-utils",
"version": "0.1.56",
"description": "AWS CFT Utilities to fill the gaps for Cloud Formation",
"keywords": [
"cft",
"aws",
"cloudformation"
],
"homepage": "https://github.com/brickhouse-tech/cft-utils#readme",
"bugs": {
"url": "https://github.com/brickhouse-tech/cft-utils/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/brickhouse-tech/cft-utils.git"
},
"author": "Nicholas McCready",
"main": "src/index.js",
"bin": {
"taggableResourceMap.js": "./bin/taggableResourceMap.js",
"taggableResources.js": "./bin/taggableResources.js"
},
"files": [
"src/**/*.js",
"src/**/*.json",
"*.js",
"!commitlint.config.js",
"!vitest*.js",
"!.*.js"
],
"scripts": {
"lint": "eslint .",
"prepack": "./bin/taggableResourceMap.js && ./bin/taggableResources.js",
"prepare": "skip-npm-task -t prepare sort-package-json",
"test": "vitest run",
"unused:dependencies": "depcheck --ignore-bin-package --ignores @znemz/skip-npm-task,sort-package-json"
},
"dependencies": {
"debug-fabulous": "2.0.64",
"glob": "13.0.6"
},
"devDependencies": {
"@commitlint/cli": "^20",
"@commitlint/config-conventional": "^20",
"@eslint/js": "^10",
"@znemz/skip-npm-task": "0.1.0",
"aws-cdk-lib": "2.250.0",
"commit-and-tag-version": "12",
"commitlint": "20",
"depcheck": "1.4.7",
"eslint": "^10",
"eslint-config-prettier": "10",
"eslint-plugin-prettier": "5",
"globals": "^17",
"prettier": "3",
"sort-package-json": "3.6",
"vitest": "^4"
},
"engines": {
"node": ">=20"
}
}