-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.29 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
{
"name": "fastify-method-override",
"version": "1.5.10",
"description": "plugin for fastify override http verbs",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"clean": "rm -rf lib",
"build": "babel src -d lib",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"override",
"http",
"verbs",
"plugin",
"fastify"
],
"files": [
"lib"
],
"author": "Stanislav Dzisiak",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/corsicanec82/fastify-method-override.git"
},
"homepage": "https://github.com/corsicanec82/fastify-method-override.git#readme",
"bugs": {
"url": "https://github.com/corsicanec82/fastify-method-override.git/issues"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.4.2",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"fastify": "^4.13.0",
"jest": "^29.4.2",
"jest-cli": "^29.4.2"
},
"dependencies": {
"fastify-plugin": "^4.5.0",
"http-errors": "^2.0.0",
"lodash": "^4.17.21",
"path-to-regexp": "^6.2.1"
}
}