generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
106 lines (106 loc) · 2.62 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
{
"name": "argo-cd-action",
"version": "0.0.0",
"private": true,
"description": "GitHub action for executing Argo CD",
"keywords": [
"github",
"actions",
"argo-cd",
"git-ops"
],
"homepage": "https://github.com/clowdhaus/argo-cd-action#readme",
"bugs": {
"url": "https://github.com/clowdhaus/argo-cd-action/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clowdhaus/argo-cd-action.git"
},
"license": "Apache-2.0",
"author": "Clowd Haus, LLC",
"main": "src/index.ts",
"scripts": {
"all": "yarn format && yarn lint && yarn compile",
"compile": "ncc build -m",
"format": "prettier --write src/*ts .eslintrc.js",
"lint": "eslint '**/*.ts' --quiet --fix",
"release": "semantic-release"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
],
"*.md": [
"prettier --single-quote --write"
],
"*package.json": [
"prettier --write --plugin=prettier-plugin-package"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"ansi-regex": "^5.0.1",
"marked": ">=4.0.10",
"uuid": "^7.0"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
"@actions/tool-cache": "^1.7.1",
"@octokit/auth-action": "^1.3.3",
"@octokit/rest": "^18.12.0",
"string-argv": "^0.3.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@vercel/ncc": "^0.33.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"prettier-plugin-package": "^1.3.0",
"semantic-release": "^18.0.1",
"typescript": "^4.5.4"
},
"release": {
"branches": [
"main"
],
"ci": false,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): version ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}