-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "fastify-boom",
"version": "1.0.0",
"description": "Fastify Boom support - HTTP-friendly error objects",
"main": "index.js",
"scripts": {
"test": "npm run lint && tap test.js",
"lint": "eslint \"./**/*.js\"",
"patch": "np patch --yolo",
"minor": "np minor --yolo",
"major": "np major --yolo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeromemacias/fastify-boom.git"
},
"author": "Jérôme Macias <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeromemacias/fastify-boom/issues"
},
"homepage": "https://github.com/jeromemacias/fastify-boom#readme",
"dependencies": {
"@hapi/boom": "^8.0.1",
"fastify-plugin": "^0.2.2"
},
"devDependencies": {
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "~14.2.0",
"eslint-config-hemera": "1.0.0",
"eslint-config-prettier": "~6.11.0",
"eslint-plugin-import": "~2.22.0",
"eslint-plugin-mocha": "~8.0.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~3.1.4",
"eslint-plugin-promise": "~4.2.1",
"fastify": "^2.15.1",
"np": "~6.5.0",
"pre-commit": "~1.2.2",
"prettier": "^2.1.1",
"tap": "~14.10.8"
}
}