-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.4 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.4 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
{
"name": "@envoy/toolshed/actions/github/mutex",
"version": "0.0.0",
"description": "A GitHub Action for exclusive control",
"scripts": {
"build": "tsc --noEmit --skipLibCheck && ncc build src/index.ts -o dist/main -m && ncc build src/cleanup.ts -o dist/cleanup -m",
"test": "tsc --noEmit --skipLibCheck --project tsconfig.test.json && jest",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/envoyproxy/toolshed"
},
"author": "Ryan Northey <ryan@synca.io>",
"license": "Apache2",
"bugs": {
"url": "https://github.com/envoyproxy/toolshed/issues"
},
"homepage": "https://github.com/envoyproxy/toolshed/tree/main/actions/github/mutex",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/io": "^3.0.2"
},
"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",
"jest-circus": "^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"
}
}