-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.48 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
{
"name": "good-samaritan",
"version": "1.6.2",
"description": "Find open issues from open source dependencies of your project.",
"keywords": [
"cli"
],
"homepage": "https://github.com/stdavis/good-samaritan",
"bugs": "https://github.com/stdavis/good-samaritan/issues",
"repository": "stdavis/good-samaritan",
"license": "MIT",
"author": "Scott Davis <[email protected]>",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"good-samaritan": "./bin/run.js"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"check": "tsc --noEmit",
"format": "prettier --write .",
"lint": "eslint .",
"prepack": "oclif manifest && oclif readme",
"postpack": "shx rm -f oclif.manifest.json",
"release": "standard-version",
"test": "vitest",
"posttest": "npm run lint"
},
"oclif": {
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"bin": "good-samaritan",
"commands": {
"strategy": "single",
"target": "./dist/index.js"
},
"default": ".",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-version"
],
"topicSeparator": " "
},
"dependencies": {
"@oclif/core": "^4.0.27",
"@oclif/plugin-version": "^2.2.14",
"@octokit/plugin-retry": "^7.1.2",
"@octokit/plugin-throttling": "^9.3.2",
"@octokit/rest": "^21.0.2",
"chalk": "^5.3.0",
"cli-ux": "^6.0.9",
"conf": "^13.0.1",
"node-fetch": "^3.3.2",
"open": "^10.1.0",
"package-json": "10.0.1",
"parse-github-url": "1.0.3",
"pretty-ms": "^9.1.0",
"read-pkg": "9.0.1",
"un": "^0.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@oclif/plugin-help": "^6.2.14",
"@oclif/test": "^4.0.9",
"@types/cli-progress": "^3.11.6",
"@types/debug": "^4.1.12",
"@types/node": "^22.7.5",
"@types/parse-github-url": "^1.0.3",
"chai": "^5.1.1",
"debug": "^4.3.7",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.10.0",
"msw": "^2.4.9",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.3",
"shx": "^0.3.4",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.1",
"vitest": "^2.1.2"
},
"engines": {
"node": ">=18.0.0"
}
}