generated from SAP/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.58 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
{
"name": "migrationtool",
"version": "1.3.0",
"description": "Assistant to support content migration from SAP Integration Services (Neo) to SAP Integration Suite (Multi-cloud)",
"repository": "https://github.com/SAP/migration-tool-for-cloud-integration",
"license": "Apache-2.0",
"private": false,
"author": {
"name": "Willem Pardaens",
"email": "willem.pardaens@sap.com"
},
"engines": {
"node": ">=20"
},
"keywords": [
"SAP Integration Suite",
"SAP Cloud Integration",
"Migration tool"
],
"dependencies": {
"@cap-js/hana": "^1",
"@cap-js/postgres": "^1",
"@cap-js/sqlite": "^1.7.4",
"@sap-cloud-sdk/http-client": "^3.22",
"@sap/cds": "^8.3.1",
"@sap/xssec": "^4",
"axios": "^1.7",
"express": "^4.21.1",
"qs": "^6.13.0",
"xml2js": "^0.6.2",
"yauzl": "^3.1.3",
"yazl": "^2.5.1"
},
"devDependencies": {
"@sap/cds-dk": "^8",
"rimraf": "^6.0.1"
},
"scripts": {
"start": "cds-serve",
"build:cf": "rimraf resources mta_archives && cds build --production",
"undeploy": "cf undeploy migrationtool --delete-services --delete-service-keys --delete-service-brokers"
},
"cds": {
"log": {
"format": "plain"
},
"requires": {
"[production]": {
"db": {
"kind": "hana"
}
},
"[development]": {
"db": {
"kind": "sqlite",
"credentials": {
"url": "db.sqlite"
}
},
"auth": "dummy"
},
"html5-repo": true
},
"cdsc": {
"defaultStringLength": 1000
}
}
}