-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
29 lines (29 loc) · 969 Bytes
/
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
{
"name": "@aws/codepipeline-starter-templates",
"version": "1.0.0",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "rm -rf node_modules dist build generated-metadata",
"copy-templates": "cp -r templates/metadata generated-metadata",
"strip-comments": "npx ts-node scripts/strip-comments.ts",
"pre-test": "rm -rf generated-metadata && npm run copy-templates && npm run strip-comments",
"merge-cloudformation-templates": "npx ts-node scripts/merge-cloudformation-templates.ts",
"validate-schemas": "npx ts-node scripts/validate-schemas.ts",
"test": "npm run pre-test && npm run validate-schemas && npm run merge-cloudformation-templates"
},
"devDependencies": {
"@tsconfig/node18": "*",
"ajv": "*",
"ajv-draft-04": "*",
"glob": "*",
"js-yaml": "*",
"prettier": "*",
"strip-comments": "*",
"ts-node": "*",
"typescript": "*",
"yaml-cfn": "^0.3.2"
}
}