-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 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
121
122
{
"name": "cfn-diagram-action",
"version": "1.1.0",
"description": "GitHub Action for cfn-diagram, the AWS Cloudformation visualization tool",
"main": "dist/index.js",
"source": "src/index.ts",
"author": "Cristian Boarna <contact@crisboarna.com>",
"license": "MIT",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/crisboarna/cfn-diagram-action.git"
},
"bugs": {
"url": "https://github.com/crisboarna/cfn-diagram-action/issues"
},
"homepage": "https://github.com/crisboarna/cfn-diagram-action#readme",
"scripts": {
"prepare": "husky install",
"setup": "curl https://raw.githubusercontent.com/nektos/act/master/install.sh | sudo bash",
"lint": "eslint '*/**/*.{js,ts,tsx}' --max-warnings 0",
"test": "yarn test:unit",
"test:unit": "jest --coverage",
"test:integration": "node -r dotenv/config -r ts-node/register src/index.ts",
"test:integration:local": "act -j --rm test-integration -W .github/workflows/test_integration.yaml",
"build": "tsc",
"release": "semantic-release"
},
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.1.1",
"@mhlabs/cfn-diagram": "^1.1.36",
"glob": "^8.0.3",
"playwright-chromium": "^1.25.1"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.0.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.1",
"@types/node": "18.7.14",
"@typescript-eslint/eslint-plugin": "~5.36.1",
"@typescript-eslint/parser": "~5.36.1",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.2",
"eslint": "~8.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"husky": "^8.0.1",
"jest": "27.2.3",
"prettier": "^2.7.1",
"semantic-release": "^19.0.3",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"typescript": "~4.8.2"
},
"keywords": [
"Github",
"Action",
"CI/CD",
"cfn-diagram",
"cloudformation",
"aws"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false,
"tarballDir": "dist"
}
],
[
"@semantic-release/git",
{
"assets": [
"dist/*.js",
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]"
}
],
[
"@semantic-release/github",
{
"assets": "dist/*.tgz"
}
]
],
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"master",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
}
}