forked from Azure/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 758 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 758 Bytes
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
{
"name": "cli",
"version": "3.0.0",
"description": "Automate your GitHub workflows using Azure CLI scripts.",
"main": "src/main.js",
"scripts": {
"build": "ncc build -C -m src/entrypoint.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/CLI.git"
},
"author": "Microsoft",
"license": "MIT",
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.0.1",
"@actions/io": "^1.0.1",
"@types/node": "^24.0.0"
},
"bugs": {
"url": "https://github.com/Azure/CLI/issues"
},
"homepage": "https://github.com/Azure/CLI#readme"
}