-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.24 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.24 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
{
"name": "@envoy/toolshed/actions/github/script/run",
"version": "1.0.0",
"description": "Run a script with postscript.",
"repository": {
"type": "git",
"url": "git+https://github.com/envoyproxy/toolshed.git"
},
"keywords": [
"action",
"ci",
"github",
"workflow"
],
"author": "",
"license": "Apache2",
"bugs": {
"url": "https://github.com/envoyproxy/toolshed/issues"
},
"homepage": "https://github.com/envoyproxy/toolshed",
"scripts": {
"build": "tsc --noEmit && ncc build main.ts -o dist -m",
"test": "tsc --noEmit && jest",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.2",
"@types/tmp": "^0.2.5",
"@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": "^6.0.0",
"typescript-eslint": "^8.0.0"
},
"dependencies": {
"@actions/core": "^3.0.0"
}
}