-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1010 Bytes
/
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
{
"name": "fastify-event-bus",
"description": "Event bus support for Fastify. Built upon js-event-bus.",
"version": "1.0.1",
"main": "index.js",
"types": "types/index.d.ts",
"repository": "[email protected]:Shiva127/fastify-event-bus.git",
"homepage": "https://github.com/Shiva127/fastify-event-bus#readme",
"bugs": {
"url": "https://github.com/Shiva127/fastify-event-bus/issues"
},
"author": "Gilles Marchand",
"license": "MIT",
"scripts": {
"lint": "standard | snazzy",
"lint:fix": "standard --fix | snazzy",
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "tap",
"test:typescript": "tsd"
},
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"@types/node": "^20.8.4",
"fastify": "^4.11.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.3.2",
"tsd": "^0.29.0"
},
"dependencies": {
"fastify-plugin": "^4.4.0",
"js-event-bus": "^1.1.1"
},
"pre-commit": [
"lint",
"test"
]
}