-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.21 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
{
"name": "setup-github-cli",
"version": "4.0.1",
"private": true,
"description": "Setup the GitHub CLI",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build",
"test": "jest",
"all": "npm run build && npm run format && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freenet-actions/setup-github-cli.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "freenet",
"license": "MIT",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/tool-cache": "2.0.2"
},
"overrides": {
"undici": "6.24.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "5.10.0",
"@types/jest": "30.0.0",
"@types/node": "24.12.2",
"@typescript-eslint/parser": "8.60.1",
"@vercel/ncc": "0.38.4",
"eslint": "9.39.3",
"eslint-plugin-github": "6.0.0",
"eslint-plugin-jest": "29.15.2",
"globals": "17.6.0",
"jest": "30.4.2",
"jest-circus": "30.4.2",
"prettier": "3.8.3",
"ts-jest": "29.4.11",
"typescript": "5.9.3"
}
}