forked from cap-js/cds-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.85 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
{
"name": "@cap-js/cds-types",
"version": "0.7.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": [
"dist/",
"scripts/",
"LICENSE",
"README.md"
],
"scripts": {
"test": "jest --silent",
"test:integration": "jest --testMatch \"**/test/**/*.integrationtest.js\"",
"test:rollup": "npm run rollup; npm run rollup:on; npm run test; npm run rollup:off",
"rollup": "rm -rf dist/ && mkdir -p etc/ && npx -y @microsoft/api-extractor run --local --verbose && .github/rollup-patch.js",
"rollup:on": "npm pkg set typings=dist/cds-types.d.ts && [ -d 'apis' ] && mv -- apis -apis || true",
"rollup:off": "npm pkg set typings=apis/cds.d.ts && [ -d '-apis' ] && mv -- -apis apis || true",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"setup": "npm i && npm i file:. --no-save --force",
"prerelease:ci-fix": "node .github/prerelease-fix.js",
"postinstall": "node ./scripts/postinstall.js"
},
"peerDependencies": {
"@sap/cds": "^8.0.0"
},
"dependencies": {
"@types/express": "^4.17.21"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@sap/cds": ">=8.0.0",
"@stylistic/eslint-plugin-js": "^2.1.0",
"@stylistic/eslint-plugin-ts": "^2.1.0",
"@types/jest": "^29.5.11",
"@types/node": "^22",
"axios": "^1.6.2",
"chai": "^4.3.10",
"eslint": "^9.2.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.4.5",
"typescript-eslint": "^8.0.0-alpha.51",
"winston": "^3.13.0"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
}
}