azureauth
Version:
node-azure auth wrapps the AzureAuth CLI wrapper for performing AAD Authentication
52 lines (51 loc) • 1.58 kB
JSON
{
"name": "azureauth",
"version": "0.15.0",
"description": "node-azure auth wrapps the AzureAuth CLI wrapper for performing AAD Authentication",
"bin": "./scripts/azureauth.cjs",
"repository": {
"url": "https://github.com/microsoft/ado-npm-auth"
},
"main": "dist/index.js",
"types": "lib/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"bundle": "yarn bundleInstall && yarn bundleCli && yarn bundleIndex",
"bundleInstall": "esbuild --sourcemap --bundle --minify --platform=node --outfile=dist/install.cjs src/install.ts",
"bundleCli": "esbuild --sourcemap --bundle --minify --platform=node cli.js --outfile=dist/cli.cjs",
"bundleIndex": "esbuild --sourcemap --bundle --minify --platform=node --format=esm src/index.ts --outfile=dist/index.js",
"lint": "prettier --check src/**/*.ts ./cli.js ",
"start": "tsc --watch",
"test": "vitest run src",
"postinstall": "node ./scripts/install.cjs"
},
"files": [
"dist/install.cjs",
"dist/cli.cjs",
"dist/index.js",
"scripts/azureauth.cjs",
"scripts/install.cjs"
],
"keywords": [
"node",
"azureauth",
"aad",
"azure active directory",
"authentication"
],
"author": "Jonathan Creamer",
"license": "MIT",
"devDependencies": {
"@types/decompress": "^4.2.7",
"@types/node": "^20.17.28",
"decompress": "^4.2.1",
"esbuild": "^0.28.1",
"execa": "^7.2.0",
"node-downloader-helper": "^2.1.9",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"vite": "^6.4.2",
"vitest": "^4.1.0"
}
}