-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.32 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.32 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
{
"name": "@hellocoop/mockin",
"private": false,
"version": "1.6.1",
"description": "Hellō Mock Login OpenID Connect Server",
"engines": {
"node": "~22"
},
"files": [
"src",
"package.json",
"package-lock.json",
"README.md",
"LICENSE"
],
"bin": {
"mockin": "src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hellocoop/mockin.git"
},
"author": {
"name": "Hello Identity Co-op",
"email": "contact@hello.coop",
"url": "https://hello.coop"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/hellocoop/mockin/issues"
},
"homepage": "https://www.hello.dev/docs/mockin",
"dependencies": {
"@fastify/cors": "^10.0.0",
"@fastify/formbody": "^8.0.0",
"@hellocoop/constants": "*",
"@hellocoop/httpsig": "^1.5.1",
"fastify": "^5.0.0",
"jose": "^5.0.0",
"pkce-challenge": "^4.0.1"
},
"scripts": {
"build": "docker buildx build -t mockin . --platform linux/amd64,linux/arm64 --load",
"start": "node --no-warnings ./src/server.js",
"test": "mocha",
"test:debug": "mocha --inspect",
"release": "./scripts/release.sh"
},
"devDependencies": {
"chai": "^6.2.2",
"mocha": "^11.7.5"
},
"type": "module",
"overrides": {
"minimatch": "^10.2.1",
"diff": "^8.0.3"
}
}