CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json94 linesDownload Raw Back to msal-node
1{2  "$schema": "https://json.schemastore.org/package.json",3  "name": "@azure/msal-node",4  "version": "5.2.3",5  "author": {6    "name": "Microsoft",7    "email": "nugetaad@microsoft.com",8    "url": "https://www.microsoft.com"9  },10  "license": "MIT",11  "repository": {12    "type": "git",13    "url": "https://github.com/AzureAD/microsoft-authentication-library-for-js.git"14  },15  "description": "Microsoft Authentication Library for Node",16  "keywords": [17    "js",18    "ts",19    "node",20    "AAD",21    "msal",22    "oauth"23  ],24  "type": "module",25  "main": "lib/msal-node.cjs",26  "module": "dist/index.mjs",27  "types": "types/index.d.ts",28  "exports": {29    ".": {30      "import": {31        "types": "./types/index.d.ts",32        "default": "./dist/index.mjs"33      },34      "require": {35        "types": "./types/index.d.cts",36        "default": "./lib/msal-node.cjs"37      }38    },39    "./package.json": "./package.json"40  },41  "files": [42    "dist",43    "types",44    "lib",45    "src"46  ],47  "scripts": {48    "build": "npm run clean && rollup -c --strictDeprecations --bundleConfigAsCjs && npm run build:types",49    "build:types": "tsc -p tsconfig.build.types.json",50    "build:watch": "rollup -c --watch --strictDeprecations --bundleConfigAsCjs",51    "clean": "shx rm -rf dist types lib",52    "test": "jest",53    "test:watch": "jest --watch",54    "test:coverage": "jest --coverage",55    "lint": "eslint src --ext .ts",56    "lint:fix": "npm run lint -- --fix",57    "build:all": "cd ../.. && npm run build --workspace=@azure/msal-common --workspace=@azure/msal-node",58    "prepack": "npm run build:all",59    "format:check": "prettier --ignore-path .gitignore --check src test",60    "format:fix": "prettier --ignore-path .gitignore --write src test",61    "apiExtractor": "api-extractor run"62  },63  "beachball": {64    "disallowedChangeTypes": [65      "major"66    ]67  },68  "devDependencies": {69    "@microsoft/api-extractor": "^7.43.4",70    "@rollup/plugin-node-resolve": "^15.0.1",71    "@rollup/plugin-typescript": "^11.0.0",72    "@types/jest": "^29.5.0",73    "@types/jsonwebtoken": "^9.0.1",74    "@types/node": "^20.3.1",75    "eslint-config-msal": "file:../../shared-configs/eslint-config-msal",76    "jest": "^29.5.0",77    "jest-junit": "^16.0.0",78    "prettier": "2.8.7",79    "rollup": "^4.22.4",80    "rollup-msal": "file:../../shared-configs/rollup-msal",81    "ts-jest": "^29.1.0",82    "tslib": "^1.10.0",83    "typescript": "^4.9.5",84    "yargs": "^17.3.1"85  },86  "dependencies": {87    "@azure/msal-common": "16.7.0",88    "jsonwebtoken": "^9.0.0"89  },90  "engines": {91    "node": ">=20"92  }93}94 
basant307/AI_Governance_Project · CoolFace