UNPKG

auth0

Version:
87 lines (86 loc) 2.36 kB
{ "name": "auth0", "version": "4.27.0", "description": "SDK for Auth0 API v2", "main": "dist/cjs/index.js", "types": "dist/cjs/index.d.ts", "type": "module", "exports": { ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.ts", "default": "./dist/cjs/index.js" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "prebuild": "rm -rf dist", "build": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json && echo '{\"type\": \"commonjs\"}'> dist/cjs/package.json", "docs": "typedoc --options typedoc.cjs", "test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest", "test:ci": "c8 npm run test -- --maxWorkers=1", "precommit": "pretty-quick --staged", "lint": "eslint ./src ./test --ext ts", "lint:package": "publint", "start:playground": "node --experimental-specifier-resolution=node --no-warnings --loader ts-node/esm playground/index.ts" }, "repository": { "type": "git", "url": "https://github.com/auth0/node-auth0" }, "engines": { "node": ">=18" }, "keywords": [ "auth0", "api" ], "author": "Auth0", "license": "MIT", "bugs": { "url": "https://github.com/auth0/node-auth0/issues" }, "homepage": "https://github.com/auth0/node-auth0", "dependencies": { "jose": "^4.13.2", "undici-types": "^6.15.0", "uuid": "^9.0.0" }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^16.18.37", "@types/node-fetch": "^2.6.3", "@types/uuid": "^9.0.1", "@typescript-eslint/eslint-plugin": "^5.58.0", "@typescript-eslint/parser": "^5.58.0", "c8": "^7.13.0", "commander": "^10.0.1", "dotenv": "^16.0.3", "eslint": "^8.16.0", "eslint-config-prettier": "^8.8.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-promise": "^6.0.0", "husky": "^3.0.1", "jest": "^29.5.0", "nock": "^13.2.7", "node-fetch": "^3.3.1", "prettier": "^2.8.7", "pretty-quick": "^1.11.1", "publint": "^0.2.2", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", "typedoc": "^0.24.6", "typescript": "4.9.5", "undici": "^6.15.0" } }