-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.84 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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "cap-s4",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap-cloud-sdk/core": "^1.52.0",
"@sap/cds": "^5",
"@sap/cds-odata-v2-adapter-proxy": "^1.8.1",
"@sap/cloud-sdk-op-vdm-planned-order-service": "^1.28.2",
"@sap/cloud-sdk-vdm-business-partner-service": "^1.28.2",
"@sap/cloud-sdk-vdm-planned-order-service": "^1.28.2",
"@sap/xsenv": "^3.1.1",
"@sap/xssec": "^3.2.10",
"csurf": "^1.11.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"passport": "^0.5.0"
},
"devDependencies": {
"@sap-cloud-sdk/test-util": "^1.52.0",
"@sap-cloud-sdk/cli": "^0.1.12"
},
"scripts": {
"start": "cds run",
"ci-build": "echo \"Use this to compile or minify your application\"",
"ci-package": "sap-cloud-sdk package --include=\"package.json,package-lock.json,index.js,dist/**/*\"",
"ci-integration-test": "echo \"Test your application and write results in a JUnit format to `s4hana_pipeline/reports/backend-integration/` and coverage in a cobertura format to `s4hana_pipeline/reports/coverage/backend-integration/`\"",
"ci-backend-unit-test": "echo \"Test your application and write results in a JUnit format to `s4hana_pipeline/reports/backend-unit/` and coverage in a cobertura format to `s4hana_pipeline/reports/coverage/backend-unit/`\""
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"es2020": true,
"node": true,
"jest": true,
"mocha": true
},
"globals": {
"SELECT": true,
"INSERT": true,
"UPDATE": true,
"DELETE": true,
"CREATE": true,
"DROP": true,
"CDL": true,
"CQL": true,
"CXL": true,
"cds": true
},
"rules": {
"no-console": "off",
"require-atomic-updates": "off"
}
},
"cds": {
"features": {
"fetch_csrf": "true"
},
"requires": {
"uaa": {
"kind": "xsuaa"
},
"OP_API_SETTLMT_DOC_0001.sap.gateway.srvd_a2x.api_settlmt_doc.v0001": {
"kind": "odata-v4",
"model": "srv/external/OP_API_SETTLMT_DOC_0001",
"credentials": {
"destination": "S4HANA",
"destinationPath": "/sap/opu/odata4/sap/api_settlmt_doc/srvd_a2x/sap/settlmtdoc/0001/",
"requestTimeout": 10000
}
},
"ZPDCDS_SRV": {
"kind": "odata-v2",
"model": "srv/external/ZPDCDS_SRV",
"credentials": {
"destination": "sapes5",
"url": "/sap/opu/odata/sap/ZPDCDS_SRV/",
"requestTimeout": 10000
}
},
"Northwind": {
"kind": "odata",
"model": "srv/external/Northwind",
"credentials": {
"destination": "northwind",
"requestTimeout": 10000
}
}
}
}
}