-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 886 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
{
"name": "express-requesthandler",
"version": "0.0.17",
"description": "Allows creating express routes automatically from class methods using decorators",
"scripts": {
"build": "tsc"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/daanrutten/express-requesthandler.git"
},
"keywords": [
"request",
"express",
"get",
"post"
],
"author": "Daan Rutten",
"license": "ISC",
"bugs": {
"url": "https://github.com/daanrutten/express-requesthandler/issues"
},
"homepage": "https://github.com/daanrutten/express-requesthandler#readme",
"dependencies": {
"bson": "^5.0.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/node": "^18.13.0",
"tslint": "^6.1.3",
"typescript": "^4.9.4"
}
}