-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.95 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.95 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
{
"name": "@hellocoop/fastify",
"version": "1.16.12",
"description": "Fastify SDK for Hellō https://hello.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/hellocoop/packages-js.git"
},
"homepage": "https://www.hello.dev/docs/sdks/fastify",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist/"
],
"keywords": [
"fastify",
"nodejs",
"node.js",
"hello",
"openid",
"oidc",
"sso"
],
"author": {
"name": "Hello Identity Co-op",
"email": "contact@hello.coop",
"url": "https://hello.coop"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/hellocoop/packages-js/issues"
},
"scripts": {
"watch": "tsc --watch --declaration",
"prebuild": "rimraf dist node_modules",
"build": "tsc --declaration",
"test": "npm run build && docker compose -f ./spec/docker-compose.yml up --build --abort-on-container-exit",
"test:debug": "npm run build && docker compose -f ./spec/docker-compose.yml -f ./spec/docker-compose.debug.yml up --build --abort-on-container-exit",
"spec": "wait-on http://mockin:3333/mock && mocha './spec/**/*.spec.mjs'",
"spec:debug": "wait-on http://mockin:3333/mock && node --inspect-brk=0.0.0.0 ./node_modules/.bin/mocha './spec/**/*.spec.mjs'"
},
"peerDependencies": {
"fastify": "^4 || ^5"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"fastify": "^5.3.0",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@fastify/formbody": "^8.0.2",
"@hellocoop/api": "^2.5.2",
"dotenv": "^16.3.1",
"fastify-plugin": "^5.0.1"
},
"gitHead": "2708ae6a0cf0cb970bed968ab62955e639c9e897"
}