UNPKG

ally-auth0

Version:

An Auth0 driver for AdonisJS's Ally authentication module

67 lines (66 loc) 1.67 kB
{ "name": "ally-auth0", "version": "0.1.1", "description": "An Auth0 driver for AdonisJS's Ally authentication module", "main": "build/providers/index.js", "files": [ "build/src", "build/providers", "build/standalone.js", "build/standalone.d.ts", "build/instructions.md" ], "scripts": { "clean": "del build", "copyfiles": "copyfiles \"instructions.md\" build", "compile": "npm run lint && npm run clean && tsc", "build": "npm run compile && npm run copyfiles", "prepublishOnly": "npm run build", "lint": "eslint . --ext=.ts", "format": "prettier --write .", "version": "npm run build" }, "keywords": [ "adonisjs", "adonis-ally", "auth0" ], "homepage": "https://github.com/skrenek/ally-auth0", "repository": { "type": "git", "url": "https://github.com/skrenek/ally-auth0.git" }, "author": { "name": "Steve Krenek", "url": "https://github.com/skrenek" }, "license": "MIT", "devDependencies": { "@adonisjs/ally": "^4.1.0", "@adonisjs/core": "^5.1.11", "@types/node": "^15.14.9", "copyfiles": "^2.4.1", "del-cli": "^3.0.1", "eslint": "^7.32.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-adonis": "^1.3.3", "eslint-plugin-prettier": "^3.4.1", "prettier": "^2.3.2", "typescript": "^4.3.5" }, "peerDependencies": { "@adonisjs/ally": "^4.0.0", "@adonisjs/core": "^5.0.0" }, "adonisjs": { "instructionsMd": "./build/instructions.md", "env": { "AUTH0_CLIENT_ID": "", "AUTH0_CLIENT_SECRET": "" }, "types": "ally-auth0", "providers": [ "ally-auth0" ] } }