2022-07-12 09:00:22 +02:00
|
|
|
{
|
|
|
|
"name": "@azure/core-auth",
|
2022-10-29 10:03:51 +02:00
|
|
|
"version": "1.4.0",
|
2022-07-12 09:00:22 +02:00
|
|
|
"description": "Provides low-level interfaces and helper methods for authentication in Azure SDK",
|
|
|
|
"sdk-type": "client",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"module": "dist-esm/src/index.js",
|
|
|
|
"types": "./types/latest/core-auth.d.ts",
|
|
|
|
"typesVersions": {
|
|
|
|
"<3.6": {
|
|
|
|
"types/latest/*": [
|
|
|
|
"types/3.1/*"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
|
2022-10-29 10:03:51 +02:00
|
|
|
"build:samples": "echo Obsolete",
|
|
|
|
"build:test": "tsc -p . && dev-tool run bundle",
|
|
|
|
"build:types": "downlevel-dts types/latest/ types/3.1/",
|
|
|
|
"build": "npm run clean && tsc -p . && dev-tool run bundle && api-extractor run --local && npm run build:types",
|
2022-07-12 09:00:22 +02:00
|
|
|
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
|
2022-10-29 10:03:51 +02:00
|
|
|
"clean": "rimraf dist dist-* temp types *.tgz *.log",
|
2022-07-12 09:00:22 +02:00
|
|
|
"execute:samples": "echo skipped",
|
|
|
|
"extract-api": "tsc -p . && api-extractor run --local",
|
|
|
|
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
|
|
|
|
"integration-test:browser": "echo skipped",
|
|
|
|
"integration-test:node": "echo skipped",
|
|
|
|
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
|
|
|
"lint:fix": "eslint package.json api-extractor.json src test --ext .ts --fix --fix-type [problem,suggestion]",
|
|
|
|
"lint": "eslint package.json api-extractor.json src test --ext .ts",
|
|
|
|
"pack": "npm pack 2>&1",
|
2022-10-29 10:03:51 +02:00
|
|
|
"test:browser": "npm run clean && npm run build:test && npm run unit-test:browser && npm run integration-test:browser",
|
|
|
|
"test:node": "npm run clean && tsc -p . && npm run unit-test:node && npm run integration-test:node",
|
|
|
|
"test": "npm run clean && tsc -p . && npm run unit-test:node && dev-tool run bundle && npm run unit-test:browser && npm run integration-test",
|
2022-07-12 09:00:22 +02:00
|
|
|
"unit-test:browser": "echo skipped",
|
2022-10-29 10:03:51 +02:00
|
|
|
"unit-test:node": "mocha -r esm -r ts-node/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 1200000 --full-trace --exclude \"test/**/browser/*.spec.ts\" \"test/**/*.spec.ts\"",
|
|
|
|
"unit-test": "npm run unit-test:node && npm run unit-test:browser"
|
2022-07-12 09:00:22 +02:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"dist/",
|
|
|
|
"dist-esm/src/",
|
|
|
|
"types/latest/core-auth.d.ts",
|
|
|
|
"types/3.1",
|
|
|
|
"README.md",
|
|
|
|
"LICENSE"
|
|
|
|
],
|
|
|
|
"repository": "github:Azure/azure-sdk-for-js",
|
|
|
|
"keywords": [
|
|
|
|
"azure",
|
|
|
|
"authentication",
|
|
|
|
"cloud"
|
|
|
|
],
|
|
|
|
"author": "Microsoft Corporation",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/Azure/azure-sdk-for-js/issues"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=12.0.0"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-auth/README.md",
|
|
|
|
"sideEffects": false,
|
|
|
|
"dependencies": {
|
|
|
|
"@azure/abort-controller": "^1.0.0",
|
|
|
|
"tslib": "^2.2.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-10-29 10:03:51 +02:00
|
|
|
"@azure/dev-tool": "^1.0.0",
|
2022-07-12 09:00:22 +02:00
|
|
|
"@azure/eslint-plugin-azure-sdk": "^3.0.0",
|
2022-10-29 10:03:51 +02:00
|
|
|
"@microsoft/api-extractor": "7.18.11",
|
|
|
|
"@types/chai": "^4.1.6",
|
2022-07-12 09:00:22 +02:00
|
|
|
"@types/mocha": "^7.0.2",
|
|
|
|
"@types/node": "^12.0.0",
|
2022-10-29 10:03:51 +02:00
|
|
|
"chai": "^4.2.0",
|
2022-07-12 09:00:22 +02:00
|
|
|
"cross-env": "^7.0.2",
|
2022-10-29 10:03:51 +02:00
|
|
|
"downlevel-dts": "^0.8.0",
|
|
|
|
"eslint": "^8.0.0",
|
2022-07-12 09:00:22 +02:00
|
|
|
"inherits": "^2.0.3",
|
|
|
|
"mocha": "^7.1.1",
|
2022-10-29 10:03:51 +02:00
|
|
|
"mocha-junit-reporter": "^2.0.0",
|
|
|
|
"prettier": "^2.5.1",
|
2022-07-12 09:00:22 +02:00
|
|
|
"rimraf": "^3.0.0",
|
2022-10-29 10:03:51 +02:00
|
|
|
"typescript": "~4.6.0",
|
|
|
|
"util": "^0.12.1"
|
2022-07-12 09:00:22 +02:00
|
|
|
}
|
|
|
|
}
|