azureauth
Version:
node-azure auth wrapps the AzureAuth CLI wrapper for performing AAD Authentication
54 lines (53 loc) • 1.61 kB
JSON
{
"name": "azureauth",
"version": "0.12.1",
"description": "node-azure auth wrapps the AzureAuth CLI wrapper for performing AAD Authentication",
"bin": {
"azureauth": "./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": "npm run bundleInstall && npm run bundleCli && npm run 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/node": "^20.12.7",
"@types/decompress": "^4.2.7",
"decompress": "^4.2.1",
"esbuild": "^0.23.1",
"execa": "^7.2.0",
"node-downloader-helper": "^2.1.9",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vitest": "^2.0.5",
"vite": "^5.2.8"
}
}