forked from chgeo/cds-swagger-ui-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 927 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "cds-swagger-ui-express",
"version": "0.2.0",
"description": "Swagger UI for CAP Services",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/chgeo/cds-swagger-ui-express"
},
"keywords": [
"cap",
"cds",
"express",
"openapi",
"swagger"
],
"author": {
"name": "Christian Georgi"
},
"license": "MIT",
"private": false,
"engines": {
"node": ">=12"
},
"files": [
"CHANGELOG.md",
"index.js"
],
"dependencies": {
"@sap/cds-dk": "^4.3",
"swagger-ui-express": "^4"
},
"peerDependencies": {
"@sap/cds": ">=5",
"express": ">=4"
},
"devDependencies": {
"@sap/cds": "^5.3.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"express": "^4",
"jest": "^27"
},
"scripts": {
"test": "jest"
},
"jest": {
"testEnvironment": "node"
}
}