-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.55 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.55 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
55
56
57
58
59
{
"name": "@cap-js/change-tracking",
"version": "2.0.0-beta.10",
"publishConfig": {
"access": "public",
"tag": "beta"
},
"description": "CDS plugin providing out-of-the box support for automatic capturing, storing, and viewing of the change records of modeled entities.",
"repository": "cap-js/change-tracking",
"author": "SAP SE (https://www.sap.com)",
"license": "Apache-2.0",
"main": "cds-plugin.js",
"files": [
"lib",
"_i18n",
"index.cds",
"CHANGELOG.md",
"MIGRATION.md",
"README.md"
],
"scripts": {
"lint": "npx eslint .",
"test": "npx jest --silent",
"test:sqlite": "CDS_ENV=sqlite npx jest --silent",
"test:pg": "npm run start:pg && CDS_ENV=pg npx jest --runInBand --silent",
"test:hana": "cds bind --exec -- npx jest --silent",
"start:pg": "cd tests/bookshop/ && docker compose -f pg-stack.yml up -d && npm run deploy:pg && cd ../..",
"deploy:pg": "CDS_ENV=pg cds build --production && cds deploy --profile pg",
"test:all": "npm run test:sqlite && npm run test:pg && npm run test:hana",
"format": "npx -y prettier@3 . --write",
"format:check": "npx -y prettier@3 --check ."
},
"peerDependencies": {
"@sap/cds": ">=8.5"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@cap-js/cds-test": "*",
"@cap-js/cds-types": "^0.16.0"
},
"cds": {
"requires": {
"change-tracking": {
"model": "@cap-js/change-tracking",
"maxDisplayHierarchyDepth": 3,
"preserveDeletes": false,
"procedureForRestoringBacklinks": true
}
}
},
"jest": {
"testTimeout": 180000
},
"workspaces": [
"tests/*"
]
}