-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.51 KB
/
package.json
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": "setup-marathon-cloud",
"version": "0.0.1",
"private": true,
"description": "Setup 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": "jest",
"test-coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"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/setup-marathon-cloud.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": "^29.5.12",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"husky": "^9.0.10",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/tool-cache": "^2.0.1",
"@octokit/action": "^6.0.7"
}
}