-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.27 KB
/
package.json
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
{
"name": "@hellocoop/mockin",
"private": false,
"version": "1.1.1",
"description": "Hellō Mock Login OpenID Connect Server",
"engines": {
"node": "~18",
"npm": "~9"
},
"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": "[email protected]",
"url": "https://hello.coop"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/hellocoop/mockin/issues"
},
"homepage": "https://www.hello.dev/docs/mockin",
"dependencies": {
"@fastify/cors": "^8.5.0",
"@fastify/formbody": "^7.4.0",
"@hellocoop/constants": "*",
"fastify": "^4.25.1",
"jsonwebtoken": "^9.0.2",
"jwk-to-pem": "^2.0.5",
"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": "^4.3.10",
"mocha": "^10.2.0"
},
"type": "module"
}