forked from devops-actions/load-runner-info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.72 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": "load-available-actions",
"version": "0.0.1",
"private": false,
"description": "GitHub Action to load all available runner information for an organization",
"main": "lib/main.js",
"scripts": {
"esbuild": "esbuild src/main.ts --bundle --outdir=dist --platform=node --external:vscode --external:@vscode/test-electron --external:jest",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "npm run esbuild",
"test": "jest --passWithNoTests",
"all": "npm run esbuild && npm run test # && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devops-actions/load-runner-info.git"
},
"keywords": [
"GitHub Actions",
"Load available runner information from a GitHub organization"
],
"author": "@rajbos",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"moment": "^2.30.1",
"octokit": "^3.1.2",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.38.1",
"ansi-regex": ">=5.0.1",
"dotenv": "^16.3.1",
"esbuild": "^0.19.11",
"eslint": "^8.56.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.6.0",
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
"prettier": "3.1.1",
"tmpl": ">=1.0.5",
"ts-jest": "^27.1.4",
"typescript": "^4.9.5"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
}
}