remix-auth-microsoft
Version:
The Microsoft strategy is used to authenticate users against an account on [Microsoft Active Directory](https://docs.microsoft.com/en-us/azure/active-directory/develop/) using [Remix Auth](https://github.com/sergiodxa/remix-auth). This can be a work/schoo
52 lines (51 loc) • 1.39 kB
JSON
{
"name": "remix-auth-microsoft",
"version": "3.0.0",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc --project tsconfig.json",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lint": "eslint --ext .ts,.tsx src/",
"test": "vitest --config config/vitest.config.ts run",
"coverage": "npm run test -- --coverage"
},
"keywords": [
"remix",
"remix-auth",
"auth",
"authentication",
"strategy"
],
"license": "MIT",
"files": [
"build",
"package.json",
"README.md"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^8.52.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unicorn": "^49.0.0",
"prettier": "^2.3.2",
"typescript": "^5.1.6",
"vitest": "^2.1.8"
},
"dependencies": {
"remix-auth-oauth2": "^3.2.2"
},
"author": "Juhana Jauhiainen <juhana.jauhiainen@gmail.com>",
"bugs": {
"url": "https://github.com/juhanakristian/remix-auth-microsoft/issues"
},
"homepage": "https://github.com/juhanakristian/remix-auth-microsoft#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/juhanakristian/remix-auth-microsoft.git"
}
}