forked from SAP-archive/cloud-s4-sdk-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.33 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
{
"name": "bupa-mock-odata",
"version": "1.0.0",
"description": "OData mock service for Business Partner API of SAP S/4HANA Cloud",
"main": "app.js",
"scripts": {
"start": "node server.js",
"debug": "node --inspect-brk server.js",
"test": "npx jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"generate-test-resources:social-media": "npx generate-odata-client -i social-media-accounts -o integration-tests/social-media-accounts/odata-client -s ./integration-tests/social-media-accounts/service-mapping.json --forceOverwrite",
"generate-test-resources:time-off": "npx generate-odata-client -i time-off/ -o integration-tests/time-off/odata-client -s ./integration-tests/time-off/service-mapping.json --forceOverwrite"
},
"author": "SAP",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"uuid": "^3.3.3",
"moment": "^2.29.1"
},
"engines": {
"node": "^16.16.0"
},
"devDependencies": {
"@sap/cloud-sdk-generator": "^1.13.1",
"@sap/cloud-sdk-vdm-business-partner-service": "^1.13.1",
"@types/express": "^4.17.2",
"@types/jest": "^24.0.23",
"@types/supertest": "^2.0.8",
"jest": "^24.9.0",
"jest-extended": "^0.11.2",
"ts-jest": "^24.2.0",
"typescript": "^3.7.2"
}
}