mirror of
https://github.com/azure/login.git
synced 2026-03-12 18:07:08 -04:00
30 lines
804 B
JSON
30 lines
804 B
JSON
{
|
|
"name": "login",
|
|
"version": "2.2.0",
|
|
"description": "Login Azure wraps the az login, allowing for Azure actions to log into Azure",
|
|
"main": "lib/main/index.js",
|
|
"scripts": {
|
|
"build:main": "ncc build src/main.ts -o lib/main",
|
|
"build:cleanup": "ncc build src/cleanup.ts -o lib/cleanup",
|
|
"build": "npm run build:main && npm run build:cleanup",
|
|
"test": "jest"
|
|
},
|
|
"author": "Microsoft",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/jest": "^29.2.4",
|
|
"@types/node": "^20.11.1",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"jest": "^29.3.1",
|
|
"jest-circus": "^29.3.1",
|
|
"ts-jest": "^29.0.3",
|
|
"typescript": "^4.9.4"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "1.9.1",
|
|
"@actions/exec": "^1.0.1",
|
|
"@actions/io": "^1.0.1",
|
|
"package-lock": "^1.0.3"
|
|
}
|
|
}
|