-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
186 lines (186 loc) · 6.98 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
{
"name": "@bitflight-devops/github-action-jira-find-issue-keys",
"version": "1.1.11",
"root": true,
"description": "This action will find the issue keys in the GitHub event and return them as a comma separated list",
"main": "lib/index.js",
"displayName": "bitflight-devops/github-action-jira-find-issue-keys",
"repository": {
"type": "git",
"url": "git@github.com:bitflight-devops/github-action-jira-find-issue-keys.git"
},
"bugs": {
"url": "https://github.com/bitflight-devops/github-action-jira-find-issue-keys/issues"
},
"keywords": [
"actions",
"github",
"node16",
"jira",
"tickets"
],
"author": "Jamie Nelson <jamie@bitflight.io>",
"license": "MIT",
"private": true,
"scripts": {
"all": "yarn run build && yarn run format && yarn run lint && yarn run package && yarn run test",
"build:script": "node .github/scripts/esbuild.cjs",
"build": "yarn exec esbuild src/index.ts --bundle --outdir=lib/ --platform=node --target=node16 --sourcemap --format=cjs",
"clean": "yarn exec rimraf lib",
"codegen": "yarn exec graphql-codegen --config codegen.yml",
"commit": "yarn exec git-cz",
"format:quick": "yarn exec pretty-quick",
"generate-docs": "yarn exec github-action-readme-generator && yarn exec prettier --write .ghadocs.json README.md && git add .ghadocs.json README.md",
"format": "prettier --write . --config .prettierrc.cjs --ignore-unknown",
"lint": "yarn lint:actionlint && eslint -c .eslintrc.cjs --fix --format friendly --color ./src/ ./__tests__/",
"typecheck": "tsc --project tsconfig.json --noemit",
"lint:fix": "yarn lint --fix",
"lint:actionlint": "bash -c '{ command -v actionlint >/dev/null 2>&1 && actionlint; } || node-actionlint'",
"lint:markdown": "yarn exec markdownlint \"**/*.md\" --config=.markdownlint.json --ignore-path=.markdownlintignore",
"lint:markdown:fix": "yarn lint:markdown --fix",
"package": "yarn run build",
"postversion": "echo 'Running post versioning commands';git add . && git commit -m 'update package version' && git push --tags -f && git push && echo \"Successfully released version $npm_package_version!\"",
"preadd": "yarn run format:quick",
"precommit": "yarn run lint:fix && yarn run build && git add lib && yarn run generate-docs",
"prepush": "yarn run format",
"prebuild": "yarn exec rimraf lib;yarn run typecheck",
"prepare": "yarn exec husky install;git config --global rebase.autosquash true",
"preversion": "echo 'Running test';yarn run test",
"test": "NODE_ENV=testing jest",
"test:ci": "NODE_ENV=testing jest --ci --reporters=default --reporters=jest-junit",
"tsc": "yarn exec tsc --project tsconfig.json"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">=16.18.1"
},
"dependencies": {
"@broadshield/github-actions-core-typed-inputs": "1.3.2",
"@broadshield/github-actions-octokit-hydrated": "1.4.2",
"@octokit/graphql-schema": "^12.41.0",
"@octokit/plugin-enterprise-server": "^11.3.0",
"@octokit/webhooks-types": "^6.8.0",
"ansi-colors": "^4.1.3",
"graceful-fs": "^4.2.10",
"graphql": "^16.6.0",
"jira.js": "^2.15.15",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"neverthrow": "^6.0.0",
"node-html-markdown": "^1.3.0",
"tslib": "^2.4.1"
},
"devDependencies": {
"@babel/code-frame": "^7.18.6",
"@babel/core": "^7.20.5",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-decorators": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/types": "^7.20.5",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/prompt": "^17.3.0",
"@octokit/core": "^4.1.0",
"@prettier/plugin-ruby": "^3.2.2",
"@prettier/plugin-xml": "^2.2.0",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@trunkio/launcher": "^1.2.3",
"@tsconfig/node16": "^1.0.3",
"@types/babel__code-frame": "^7.0.3",
"@types/debug": "^4.1.7",
"@types/glob": "^8.0.0",
"@types/jest": "^29.2.4",
"@types/jest-specific-snapshot": "^0.5.6",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.17",
"@types/node-fetch": "^2.6.2",
"@types/turndown": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"@typescript-eslint/typescript-estree": "^5.47.0",
"commitizen": "^4.2.6",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.3",
"esbuild": "^0.16.10",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-formatter-friendly": "^7.0.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-actions": "^2.0.0",
"eslint-plugin-array-func": "^3.1.7",
"eslint-plugin-editorconfig": "^4.0.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "latest",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-jest-async": "^1.0.3",
"eslint-plugin-json-schema-validator": "^4.0.3",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-lodash-fp": "^2.2.0-a1",
"eslint-plugin-neverthrow": "latest",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sonarjs": "^0.17.0",
"eslint-plugin-sort-class-members": "^1.16.0",
"eslint-plugin-switch-case": "^1.1.2",
"eslint-plugin-unicorn": "^45.0.2",
"github-action-readme-generator": "^1.2.7",
"glob": "^8.0.3",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-circus": "^29.3.1",
"jest-diff": "^29.3.1",
"jest-junit": "^15.0.0",
"jest-snapshot": "^29.3.1",
"jest-specific-snapshot": "^7.0.0",
"jsonc-eslint-parser": "^2.1.0",
"lint-staged": "^13.1.0",
"make-dir": "^3.1.0",
"markdownlint-cli": "^0.32.2",
"node-actionlint": "^1.2.2",
"prettier": "^2.8.1",
"prettier-plugin-java": "^2.0.0",
"prettier-plugin-package": "^1.3.0",
"prettier-plugin-properties": "^0.2.0",
"prettier-plugin-sh": "^0.12.8",
"pretty-format": "^29.3.1",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"typescript-eslint-language-service": "^5.0.0",
"yaml-eslint-parser": "^1.1.0"
},
"resolutions": {
"eslint-plugin-import": "npm:eslint-plugin-i@^2.26.0-2"
},
"jest-junit": {
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
},
"lint-staged": {
"{src,__tests__}/**/*.js": "eslint --cache --fix",
"*.ts": [
"eslint --cache --fix"
]
},
"packageManager": "yarn@3.3.0"
}