UNPKG

@simulacrum/auth0-simulator

Version:

Run local instance of Auth0 API for local development and integration testing

91 lines (90 loc) 2.31 kB
{ "name": "@simulacrum/auth0-simulator", "version": "0.11.4", "description": "Run local instance of Auth0 API for local development and integration testing", "main": "./dist/index.cjs", "bin": "bin/start.cjs", "scripts": { "start": "node --import=tsx ./example/index.mts", "start:bin": "node ./bin/start.cjs", "test": "NODE_EXTRA_CA_CERTS=\"$(mkcert -CAROOT)/rootCA.pem\" vitest run --fileParallelism=false", "test:watch": "NODE_EXTRA_CA_CERTS=\"$(mkcert -CAROOT)/rootCA.pem\" vitest watch --fileParallelism=false", "prepack": "npm run build", "build": "tsdown", "lint": "echo noop", "tsc": "tsc --noEmit" }, "repository": { "type": "git", "url": "git+https://github.com/thefrontside/simulacrum.git" }, "type": "module", "files": [ "bin/**/*", "dist/**/*" ], "keywords": [ "simulation", "emulation", "authentication", "auth0", "mock", "mocking", "stubbing", "integration testing" ], "author": "Frontside Engineering <engineering@frontside.com>", "license": "MIT", "bugs": { "url": "https://github.com/thefrontside/simulacrum/issues" }, "homepage": "https://github.com/thefrontside/simulacrum#readme", "dependencies": { "@simulacrum/foundation-simulator": "0.6.1", "@faker-js/faker": "^9.3.0", "assert-ts": "^0.3.4", "base64-url": "^2.3.3", "cookie-session": "^2.1.0", "cosmiconfig": "^9.0.0", "html-entities": "^2.5.2", "jsesc": "^3.1.0", "jsonwebtoken": "^9.0.2", "zod": "^3.24.1" }, "devDependencies": { "@types/base64-url": "^2.2.2", "@types/cookie-session": "^2.0.49", "@types/jsesc": "^3.0.3", "@types/jsonwebtoken": "^9.0.9" }, "module": "./dist/index.mjs", "types": "./dist/index.d.cts", "exports": { ".": { "development": "./src/index.ts", "require": "./dist/index.cjs", "import": "./dist/index.mjs" }, "./package.json": "./package.json" }, "typesVersions": { "*": { "*": [ "./dist/*", "./*" ] } }, "publishConfig": { "exports": { ".": { "require": "./dist/index.cjs", "import": "./dist/index.mjs" }, "./package.json": "./package.json" } }, "volta": { "extends": "../../package.json" } }