UNPKG

medusa-plugin-auth-xponential

Version:
124 lines (123 loc) 3.13 kB
{ "name": "medusa-plugin-auth-xponential", "version": "1.0.6", "description": "Social authentication plugin for medusajs 1.x", "keywords": [ "social", "auth", "auth0", "google", "google+", "facebook", "twitter", "linkedin", "github", "microsoft", "passportjs", "oauth2", "medusa", "medusajs", "e-commerce", "authentication", "medusa-plugins", "medusa-plugin" ], "license": "MIT", "repository": { "type": "git", "url": "https://github.com/xponential-asia/medusa-xpo-auth-plugins.git" }, "author": "Xponential", "files": [ "api", "utils", "core", "types", "loaders", "auth-strategies" ], "types": "types/index.d.ts", "scripts": { "build": "run-s clean build:tsc", "build:tsc:watch": "tsc --build ./tsconfig.json --watch", "build:tsc": "tsc -p tsconfig.json", "clean": "rimraf api services utils types loaders auth-strategies coverage tsconfig.tsbuildinfo", "test": "jest", "test:ci": "yarn add -D @medusajs/medusa@${MEDUSAJS_VERSION} && yarn run test", "prepare": "yarn build" }, "peerDependencies": { "passport": "^0.6.0", "typeorm": "*" }, "devDependencies": { "@medusajs/medusa": "1.20.0", "@medusajs/types": "1.11.13", "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", "@semantic-release/npm": "^12.0.1", "@types/express": "^4.17.17", "@types/jest": "^29.1.2", "@types/passport-auth0": "^1.0.9", "@types/passport-azure-ad": "^4.3.5", "@types/passport-facebook": "^3.0.3", "@types/passport-google-oauth2": "^0.1.8", "@types/passport-linkedin-oauth2": "^1.5.6", "@types/passport-oauth2": "^1.4.15", "jest": "^29.1.2", "npm-run-all": "^4.1.5", "passport": "^0.6.0", "semantic-release": "^24.2.0", "ts-jest": "^29.2.5", "ts-node": "^8.6.2", "typeorm": "^0.3.15", "typescript": "^5.7.2" }, "dependencies": { "@superfaceai/passport-twitter-oauth2": "^1.1.0", "@types/node": "^18.11.10", "cors": "^2.8.5", "express": "^4.18.1", "firebase-admin": "^11.4.1", "jsonwebtoken": "^8.5.1", "passport-auth0": "^1.4.3", "passport-azure-ad": "^4.3.5", "passport-facebook": "^3.0.0", "passport-firebase-jwt": "^1.2.1", "passport-google-oauth2": "^0.2.0", "passport-linkedin-oauth2": "^2.0.0", "passport-oauth2": "^1.7.0", "tldjs": "^2.3.1" }, "jest": { "preset": "ts-jest", "moduleFileExtensions": [ "js", "json", "ts" ], "testTimeout": 100000, "rootDir": "src", "testRegex": ".*\\.spec\\.ts$", "transformIgnorePatterns": [ "/node_modules/" ], "collectCoverageFrom": [ "**/*.(t|j)s", "!**/__*__/*.(t|j)s" ], "coverageReporters": [ "json-summary", "text", "lcov" ], "coverageDirectory": "<rootDir>/../coverage", "testEnvironment": "node", "setupFilesAfterEnv": [ "<rootDir>/../setup-tests.js" ] }, "publishConfig": { "registry": "https://registry.npmjs.org/" } }