@ownid/azure-b2c
Version:
Server-side library for integrating OwnID passwordless authentication with Azure Active Directory B2C
69 lines • 1.72 kB
JSON
{
"name": "@ownid/azure-b2c",
"version": "1.0.0",
"description": "Server-side library for integrating OwnID passwordless authentication with Azure Active Directory B2C",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"ngrok": "node ngrok.config.js",
"dev:tunnel": "npx concurrently \"npm run dev\" \"npm run ngrok\"",
"clean": "rimraf dist",
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@azure/identity": "^3.3.0",
"@azure/ms-rest-nodeauth": "^3.1.1",
"@microsoft/microsoft-graph-client": "^3.0.5",
"isomorphic-fetch": "^3.0.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.8",
"concurrently": "^8.2.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"ngrok": "^5.0.0-beta.2",
"nodemon": "^3.0.1",
"rimraf": "^5.0.10",
"typescript": "^5.3.3"
},
"peerDependencies": {
"express": ">=4.0.0"
},
"keywords": [
"ownid",
"azure",
"b2c",
"authentication",
"passwordless",
"identity",
"azure-ad",
"azure-active-directory"
],
"homepage": "https://github.com/ownid/ownid-azure-b2c",
"bugs": {
"url": "https://github.com/ownid/ownid-azure-b2c/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ownid/ownid-azure-b2c.git"
},
"author": "OwnID",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}