-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 KB
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
{
"name": "cap-collaborative-draft",
"version": "1.0.1",
"description": "A cds-plugin that enables SAP Fiori Elements Collaborative Draft on CAP Node.js backends",
"main": "cds-plugin.js",
"license": "Apache-2.0",
"author": "Soeren Leibach",
"repository": {
"type": "git",
"url": "git+https://github.com/sleibach/cap-collaborative-draft.git"
},
"bugs": {
"url": "https://github.com/sleibach/cap-collaborative-draft/issues"
},
"homepage": "https://github.com/sleibach/cap-collaborative-draft#readme",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest --runInBand",
"test:watch": "jest --runInBand --watch",
"test:e2e": "playwright test",
"test:all": "npm test && npm run test:e2e",
"scout:ui5": "node scripts/scout-ui5.mjs",
"scout:ui5:diff": "node scripts/scout-ui5.mjs --diff"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/test/integration/**/*.test.js"
],
"testTimeout": 30000
},
"keywords": [
"cds",
"cap",
"fiori",
"draft",
"collaborative"
],
"devDependencies": {
"@cap-js/cds-test": "^0.4.1",
"@cap-js/sqlite": "^2.2.0",
"@playwright/test": "^1.58.2",
"@sap/cds-dk": "^9.8.2",
"jest": "^30.3.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@sap/cds": ">=8.0"
}
}