-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
81 lines (81 loc) · 2.32 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "fastify-autoroutes",
"version": "3.0.2",
"description": "Map directory structure to routes",
"main": "dist/index.js",
"prettier": "@giovannicardamone/prettier-config",
"eslintConfig": {
"extends": "@giovannicardamone/eslint-config"
},
"scripts": {
"lint": "eslint",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --collectCoverage",
"docs": "docsify generate ./docs",
"docs:watch": "docsify serve ./docs",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GiovanniCardamone/fastify-autoroutes.git"
},
"keywords": [
"fastify",
"fastify-plugin",
"fastify-autoroutes",
"autoroute",
"autorouting",
"autoroutes"
],
"author": "Giovanni Cardamone",
"license": "MIT",
"bugs": {
"url": "https://github.com/GiovanniCardamone/fastify-autoroutes/issues"
},
"homepage": "https://github.com/GiovanniCardamone/fastify-autoroutes#readme",
"devDependencies": {
"@giovannicardamone/eslint-config": "^0.6.0",
"@giovannicardamone/prettier-config": "^0.1.3",
"@types/jest": "^29.2.0",
"@types/mock-fs": "^4.13.1",
"@types/node": "^14.14.6",
"coveralls": "^3.1.0",
"docsify": "^4.11.4",
"eslint": "^7.6.0",
"fastify": "^4.9.2",
"fastify-plugin": "4.2.1",
"husky": "^7.0.4",
"jest": "^29.2.1",
"light-my-request": "^5.6.1",
"mock-fs": "^5.1.4",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"@fastify/error": "^3.0.0",
"fastify-plugin": "^4.0.0",
"glob-promise": "^4.2.2"
},
"peerDependencies": {
"fastify": "^4.0.0"
},
"files": [
"dist"
],
"contributors": [
{
"name": "Giovanni Cardamone",
"email": "g.cardamone2@gmail.com",
"url": "https://giovannicardamone.github.io"
},
{
"name": "Gennaro Bosone",
"email": "gennaro.bs@gmail.com",
"url": "https://www.desidus.it"
}
]
}