-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.99 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.99 KB
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
{
"name": "@cap-js/ord",
"version": "1.5.0",
"description": "CAP Plugin for generating ORD document.",
"repository": "cap-js/ord",
"author": "SAP SE (https://www.sap.com)",
"homepage": "https://cap.cloud.sap/",
"license": "Apache-2.0",
"workspaces": [
"xmpl",
"xmpl_java",
"__tests__/integration/integration-test-app"
],
"main": "cds-plugin.js",
"files": [
"cds-plugin.js",
"lib",
"data",
"LICENSES"
],
"scripts": {
"lint": "npx eslint .",
"test": "jest __tests__/unit --ci --collectCoverage",
"test:integration:basic": "jest __tests__/integration/basic-auth.test.js --testPathIgnorePatterns=/node_modules/ --forceExit",
"test:integration:mtls": "jest __tests__/integration/mtls-auth.test.js --testPathIgnorePatterns=/node_modules/ --forceExit",
"test:integration:build": "jest __tests__/integration/cds-build.test.js --testPathIgnorePatterns=/node_modules/ --forceExit",
"update-snapshot": "jest --ci --updateSnapshot",
"cds:version": "cds v -i"
},
"devDependencies": {
"@cap-js/graphql": "^0.14.0",
"@cap-js/sqlite": "^2",
"@sap/cds-dk": ">=8.9.5",
"eslint": "^10.0.0",
"express": "^4",
"jest": "^30.0.0",
"prettier": "3.8.1",
"supertest": "^7.0.0"
},
"peerDependencies": {
"@sap/cds": ">=8.9.4"
},
"dependencies": {
"@cap-js/asyncapi": "^1.0.3",
"@cap-js/openapi": "^1.2.1",
"bcryptjs": "3.0.3",
"cli-progress": "^3.12.0",
"lodash": "^4.17.21",
"piscina": "^5.1.4"
},
"engines": {
"node": ">=18 <23"
},
"overrides": {
"@sap/cds-compiler": "6.7.3"
},
"cds": {
"requires": {
"SAP ORD Service": {
"model": "@cap-js/ord/lib/services/ord-service"
},
"[java]": {
"SAP ORD Service": false
}
}
}
}