-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.15 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
{
"name": "@starterstack/sam-expand",
"version": "0.2.20",
"description": "A tool to give sam templates more power.",
"scripts": {
"prepare": "husky",
"cz": "cz",
"prebuild": "rm -rf src/*.d.*ts && rm -rf src/plugins/*.d.*ts",
"build": "tsc",
"lint": "eslint --no-error-on-unmatched-pattern",
"postbuild": "dts-buddy && rm -rf src/*.d.*ts && rm -rf src/plugins/*.d.*ts",
"test": "c8 -r lcov -e 'js,mjs,mts' -- npm --prefix unit t || (c8 report; exit 1)",
"prepublishOnly": "npm test && npm run build && git diff --exit-code --quiet",
"typedoc": "typedoc --tsconfig tsconfig.json 'src/**/*.js' --logLevel Verbose"
},
"types": "index.d.ts",
"type": "module",
"files": [
"src",
"index.d.ts"
],
"exports": {
"./parse": {
"import": "./src/parse.js",
"types": "./index.d.ts"
},
"./log": {
"import": "./src/log.js",
"types": "./index.d.ts"
},
"./spawn": {
"import": "./src/spawn.js",
"types": "./index.d.ts"
},
"./resolve": {
"import": "./src/resolve.js",
"types": "./index.d.ts"
},
"./plugins": {
"import": "./src/plugins/types.js",
"types": "./index.d.ts"
},
"./plugins/parameter-overrides": {
"import": "./src/plugins/parameter-overrides.js",
"types": "./index.d.ts"
},
"./plugins/run-script-hooks": {
"import": "./src/plugins/run-script-hooks.js",
"types": "./index.d.ts"
},
"./plugins/esbuild-node": {
"import": "./src/plugins/esbuild-node.js",
"types": "./index.d.ts"
}
},
"bin": {
"sam-expand": "src/cli.js"
},
"keywords": [
"serverless",
"sam",
"serverless-application-model"
],
"repository": {
"type": "git",
"url": "git+https://github.com/starterstack/sam-expand.git"
},
"bugs": {
"url": "https://github.com/starterstack/sam-expand/issues"
},
"author": "James Kyburz <james.kyburz@gmail.com>",
"license": "Apache-2.0",
"engines": {
"node": ">= 20 < 21",
"npm": ">= 10"
},
"lint-staged": {
"*.{ts,js,mjs,mts,cjs,mts}": [
"npm run lint --fix",
"prettier --write"
],
"*.{md,yaml,json,yml,md}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "19.7.1",
"@commitlint/config-conventional": "19.7.1",
"@eslint/eslintrc": "3.3.0",
"@eslint/js": "9.21.0",
"@sindresorhus/tsconfig": "7.0.0",
"@types/json-schema": "7.0.15",
"@types/node": "22.13.9",
"@typescript-eslint/eslint-plugin": "8.26.0",
"@typescript-eslint/parser": "8.26.0",
"c8": "10.1.3",
"commitizen": "4.3.1",
"dts-buddy": "0.5.5",
"eslint-config-standard": "17.1.0",
"eslint-plugin": "1.0.1",
"eslint-plugin-unicorn": "56.0.1",
"esmock": "2.7.0",
"globals": "16.0.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"prettier-config-standard": "7.0.0",
"tsx": "4.19.3",
"typedoc": "0.27.9",
"typescript": "5.7.3"
},
"dependencies": {
"ajv": "8.17.1",
"better-ajv-errors": "1.2.0",
"toml": "3.0.0",
"yaml-cfn": "0.3.2"
}
}