-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.98 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
{
"name": "BusinessPartnerValidation",
"version": "1.0.0",
"description": "A simple CAP project.",
"license": "ISC",
"dependencies": {
"@sap/cds": "^8",
"@cap-js/hana": "^1",
"@sap-cloud-sdk/http-client": "^3.19.0",
"@sap-cloud-sdk/util": "^3.19.0",
"@sap/xb-msg-amqp-v100": "^0.9.51",
"@sap/xssec": "^4",
"express": "^4",
"grunt": "^1.1.0",
"passport": "^0.6.0",
"postcode-validator": "^3.6.6"
},
"engines": {
"node": ">=16.17.1 <19.0.0"
},
"scripts": {
"start": "npx cds-serve",
"test": "npm install @cap-js/sqlite && npm run test:integration",
"test:integration": "jest tests/integration/BusinessPartnerValidation.test.js"
},
"devDependencies": {
"@cap-js/sqlite": "^1.4.0",
"axios": "^0.21.1",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"jest": "*",
"mocha": "^9.2.1"
},
"cds": {
"hana": {
"deploy-format": "hdbtable"
},
"requires": {
"messaging": {
"kind": "local-messaging",
"[production]": {
"kind": "enterprise-messaging-shared"
}
},
"[production]": {
"db": {
"kind": "hana",
"model": [
"db",
"srv"
]
}
},
"API_BUSINESS_PARTNER": {
"kind": "odata",
"model": "srv/external/API_BUSINESS_PARTNER",
"csrf": true,
"csrfInBatch": true,
"[production]": {
"credentials": {
"destination": "bupa",
"requestTimeout": 18000000
}
}
},
"uaa": {
"kind": "xsuaa"
}
}
}
}