-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.47 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
{
"name": "cap-plantuml",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "https://github.com/hschaefer123/cap-plantuml",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap/cds": "^4",
"easy-livereload": "^1.4.3",
"execa": "^5.0.0",
"express": "^4",
"get-stream": "^6.0.0",
"node-dev": "^6.2.0"
},
"devDependencies": {
"@sap/ux-specification": "^1.84.1",
"sqlite3": "5.0.0"
},
"scripts": {
"watch": "cds watch",
"start": "cds run",
"test:dot": "java -jar srv/vendor/plantuml.jar -tsvg -testdot",
"test:seq": "java -jar srv/vendor/plantuml.jar srv/demos/segw_sequence.txt",
"test:yaml": "java -jar srv/vendor/plantuml.jar -tsvg srv/demos/sap4kids.mta.yaml"
},
"cds": {
"requires": {
"Northwind": {
"kind": "odata",
"model": "srv\\external\\Northwind",
"credentials": {
"destination": "northwind",
"requestTimeout": 30000
}
},
"API_PRODUCT_SRV": {
"kind": "odata",
"model": "srv\\external\\API_PRODUCT_SRV",
"credentials": {
"destination": "s4hana",
"requestTimeout": 30000
}
}
}
},
"sapux": [
"app/files"
]
}