-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.47 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.47 KB
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
{
"name": "@envoy/toolshed/actions/retest",
"version": "1.0.0",
"description": "A GitHub action to re-run failed GitHub Workflow runs on PRs by commenting '/retest'.",
"repository": {
"type": "git",
"url": "git+https://github.com/envoyproxy/toolshed.git"
},
"keywords": [
"action",
"ci",
"github",
"retest",
"workflow"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/envoyproxy/toolshed/issues"
},
"homepage": "https://github.com/envoyproxy/toolshed",
"scripts": {
"build": "tsc --noEmit --skipLibCheck && ncc build retest.ts -o dist -m",
"test": "tsc --noEmit --skipLibCheck --project tsconfig.test.json && jest",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.2",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.0.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^17.0.0",
"jest": "^30.0.0",
"nock": "^14.0.0",
"prettier": "^3.2.5",
"ts-jest": "^29.0.0",
"typescript": "^5.4.2",
"typescript-eslint": "^8.0.0"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@octokit/rest": "^22.0.1",
"axios": "^1.15.0",
"fetch-mock": "^12.0.0",
"node-fetch": "^3.0.0"
}
}