This repository has been archived by the owner on May 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.8 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
{
"name": "@egodigital/express-controllers",
"version": "8.0.0",
"description": "Sets up controllers for Express framework.",
"author": "e.GO Digital GmbH, Aachen, Germany",
"license": "LGPL-3.0",
"main": "lib/index.js",
"private": false,
"directories": {
"lib": "lib"
},
"bugs": {
"url": "https://github.com/egodigital/express-controllers/issues"
},
"homepage": "https://github.com/egodigital/express-controllers#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/egodigital/express-controllers.git"
},
"keywords": [
"express",
"api",
"controller",
"mvc",
"http",
"server",
"rest",
"restful",
"router",
"app",
"typescript",
"authorization",
"decorator",
"annotation",
"metadata",
"reflection",
"attribute"
],
"dependencies": {
"@types/express": "4.17.1",
"@types/joi": "^17.2.3",
"@types/js-yaml": "^4.0.0",
"@types/lodash": "^4.14.168",
"@types/node": "^12.19.16",
"@types/swagger-ui-express": "^4.1.2",
"express": "^4.17.1",
"fast-glob": "^3.2.5",
"is-stream": "^2.0.0",
"joi": "^17.3.0",
"js-yaml": "^4.0.0",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"del-cli": "^3.0.1",
"tslint": "^6.1.3",
"typedoc": "^0.20.23",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "del ./lib && tsc",
"deploy": "npm install && npm run build && npm publish",
"doc": "del ./doc && typedoc --out ./doc ./src"
}
}