forked from yc-actions/yc-github-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "yc-github-runner",
"version": "1.0.0",
"description": "GitHub Action to On-demand self-hosted YC runner for GitHub Actions.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts --fix",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yc-actions/yc-github-runner.git"
},
"keywords": [
"actions",
"yandex cloud",
"runner",
"github action"
],
"author": "Nikolay Matrosov",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@yandex-cloud/nodejs-sdk": "^2.3.2",
"@grpc/grpc-js": "1.8.7"
},
"devDependencies": {
"@types/node": "^18.11.19",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"@vercel/ncc": "^0.36.1",
"dotenv": "^16.0.3",
"eslint": "^8.33.0",
"eslint-plugin-github": "^4.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"jest": "^29.4.1",
"js-yaml": "^4.1.0",
"prettier": "2.8.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}