-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 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
{
"name": "@envoy/toolshed/actions/appauth",
"version": "1.0.0",
"description": "An action to hash files that is more flexible than the Github function.",
"repository": {
"type": "git",
"url": "git+https://github.com/envoyproxy/toolshed.git"
},
"keywords": [
"action",
"ci",
"github",
"dispatch",
"workflow"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/envoyproxy/toolshed/issues"
},
"homepage": "https://github.com/envoyproxy/toolshed",
"scripts": {
"build": "esbuild main.ts --bundle --platform=node --target=node16 --outfile=dist/index.js --minify --format=cjs",
"test": "jest",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"@vercel/ncc": "^0.38.1",
"esbuild": "^0.28.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^17.5.0",
"jest": "^30.0.0",
"nock": "^14.0.12",
"prettier": "^3.8.3",
"ts-jest": "^29.0.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.2"
},
"dependencies": {
"@octokit/auth-app": "^8.2.0",
"@actions/core": "^3.0.0",
"@octokit/rest": "^22.0.1",
"@octokit/types": "^16.0.0"
}
}