-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.66 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
{
"name": "cf-render",
"version": "1.0.0",
"description": "A CLI tool that renders AWS CloudFormation templates using AWS Application Composer's public UI.",
"author": "Mad Mirrajabi",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"cf-render": "dist/src/cli/index.js"
},
"scripts": {
"build": "tsc",
"start": "ts-node src/main.ts",
"test": "jest --passWithNoTests --coverageProvider=v8 --updateSnapshot --detectOpenHandles",
"lint": "gts lint",
"clean": "gts clean",
"precompile": "rm -rf dist",
"compile": "npm run precompile && tsc --build",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"release": "npx semantic-release"
},
"keywords": [
"cloudformation",
"cdk",
"template",
"renderer",
"png",
"aws"
],
"license": "MIT",
"dependencies": {
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.4",
"@semantic-release/npm": "^11.0.1",
"@semantic-release/release-notes-generator": "^12.1.0",
"commander": "^11.1.0",
"js-yaml": "^4.1.0",
"js-yaml-cloudformation-schema": "^1.0.0",
"playwright": "^1.40.1"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/jest-image-snapshot": "^6.3.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.2",
"cross-env": "^7.0.3",
"gts": "^5.2.0",
"jest": "^29.7.0",
"jest-image-snapshot": "^6.3.0",
"jest-junit": "^16.0.0",
"np": "^9.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "5.1.6"
}
}