UNPKG

@cobuildlab/auth0-utils

Version:

This is package to deal with common scenarios working with auth0 platform

72 lines (71 loc) 1.78 kB
{ "name": "@cobuildlab/auth0-utils", "version": "0.8.0", "description": "This is package to deal with common scenarios working with auth0 platform", "main": "lib/index.js", "types": "./lib/index.d.ts", "scripts": { "test": "jest --collect-coverage --passWithNoTests", "build": "tsc", "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "lint": "eslint --fix" }, "files": [ "lib/**/*" ], "repository": { "type": "git", "url": "git+https://github.com/cobuildlab/auth0-utils.git" }, "keywords": [ "8base", "auth0", "utils" ], "author": "Ragomez33", "license": "ISC", "bugs": { "url": "https://github.com/cobuildlab/auth0-utils/issues" }, "homepage": "https://github.com/cobuildlab/auth0-utils#readme", "husky": { "hooks": { "pre-commit": "npx lint-staged", "pre-push:": "npm test" } }, "lint-staged": { "*.{js,ts}": [ "prettier --write", "eslint --fix" ] }, "dependencies": { "@types/node-fetch": "^2.5.10", "nanoid": "^3.1.22", "node-fetch": "^2.6.6" }, "peerDependencies": { "node-fetch": "^2.6.6" }, "devDependencies": { "@babel/core": "^7.13.16", "@babel/preset-env": "^7.13.15", "@babel/preset-typescript": "^7.13.0", "@types/jest": "^26.0.22", "@types/node": "^14.14.41", "@typescript-eslint/eslint-plugin": "^4.22.0", "@typescript-eslint/parser": "^4.22.0", "babel-jest": "^26.6.3", "eslint": "^7.24.0", "eslint-config-prettier": "^8.2.0", "eslint-plugin-jest": "^24.3.5", "eslint-plugin-jsdoc": "^32.3.0", "husky": "^6.0.0", "jest": "^26.6.3", "lint-staged": "^10.5.4", "prettier": "^2.2.1", "ts-jest": "^26.5.5", "typescript": "^4.2.4" } }