forked from cap-js/cds-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 914 Bytes
/
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
{
"name": "@cap-js/cds-types",
"version": "0.2.0",
"description": "Type definitions for main packages of CAP, like `@sap/cds`",
"repository": "github:cap-js/cds-types",
"homepage": "https://cap.cloud.sap/",
"keywords": [
"CAP",
"CDS",
"Node.js"
],
"author": "SAP SE (https://www.sap.com)",
"license": "SEE LICENSE IN LICENSE",
"typings": "apis/cds.d.ts",
"files": [
"apis/",
"LICENSE",
"README.md"
],
"scripts": {
"test": "jest --silent",
"api-extractor": "api-extractor run --local --verbose"
},
"peerDependencies": {
"@sap/cds": ">=7"
},
"devDependencies": {
"@sap/cds": "^7.4.0",
"@types/node": "^20",
"axios": "^1.6.2",
"chai": "^4.3.10",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2",
"winston": "^3.11.0"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
}
}