-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.62 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.62 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
55
56
{
"name": "action-invoke",
"version": "0.0.1",
"private": true,
"description": "Invoke marathon-cloud in GitHub Actions",
"main": "lib/index.js",
"scripts": {
"build": "npm run format && ncc build src/run.ts -o lib",
"local:run": "npm run build && node lib/index.js",
"test": "vitest run",
"test-coverage": "vitest run --coverage",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint src/**/*.ts --fix",
"test-ci": "npm run lint && npm run format-check && npm run test-coverage && ./hack/ensure-generated.sh",
"format": "prettier --write .",
"format-check": "prettier --check .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MarathonLabs/action-invoke.git"
},
"keywords": [
"marathon-cloud",
"marathon",
"cloud",
"actions"
],
"author": "GitHub",
"license": "MIT",
"bugs": {
"url": "https://github.com/MarathonLabs/setup-marathon-cloud/issues"
},
"homepage": "https://github.com/MarathonLabs/setup-marathon-cloud#readme",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@vercel/ncc": "^0.38.4",
"@vitest/coverage-v8": "4.1.0",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"pretty-quick": "^4.2.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vitest": "^4.1.0"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/tool-cache": "^4.0.0",
"@octokit/action": "^8.0.4"
}
}