-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.67 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
{
"name": "fixdiscover",
"version": "1.2.0",
"description": "Small CLI tool to search for Jira issues with linked PRs and Issues that are fixed in an upstream projects.",
"main": "src/main.ts",
"type": "commonjs",
"bin": "./dist/main.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "esbuild ./src/main.js --bundle --outdir=dist --platform=node --target=node20.0.0 --packages=bundle",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"test": "vitest run --coverage",
"update-snapshots": "vitest run --update",
"all": "yarn && yarn run build && yarn run format && yarn test"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/redhat-plumbers-in-action/storypointer.git"
},
"author": "[email protected]",
"license": "GPL-3.0+",
"bugs": {
"url": "https://github.com/redhat-plumbers-in-action/storypointer/issues"
},
"homepage": "https://github.com/redhat-plumbers-in-action/storypointer#readme",
"keywords": [
"cli",
"jira",
"fixed",
"patch"
],
"dependencies": {
"@actions/core": "^1.11.1",
"@octokit/core": "^6.1.2",
"@octokit/plugin-throttling": "^9.3.2",
"@octokit/types": "^13.6.2",
"@total-typescript/ts-reset": "0.6.1",
"bugzilla": "^3.1.4",
"chalk": "5.3.0",
"commander": "12.1.0",
"dotenv": "16.4.5",
"jira.js": "4.0.2",
"zod": "3.23.8"
},
"devDependencies": {
"@types/node": "22.10.1",
"@vitest/coverage-v8": "2.1.7",
"esbuild": "0.24.0",
"prettier": "3.4.1",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"vitest": "2.1.7"
}
}