-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.26 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@simulacrum/auth0-simulator",
"version": "0.11.2",
"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.0",
"@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.js",
"types": "./dist/index.d.cts",
"exports": {
".": {
"development": "./src/index.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"publishConfig": {
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
}
},
"volta": {
"extends": "../../package.json"
}
}