forked from SAP/cloud-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 5.28 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "sap-cloud-sdk",
"version": "3.8.1",
"private": true,
"sideEffects": false,
"packageManager": "[email protected]",
"description": "SAP Cloud SDK for JavaScript",
"homepage": "https://sap.github.io/cloud-sdk/docs/js/getting-started",
"license": "Apache-2.0",
"keywords": [
"sap-cloud-sdk",
"cloud-sdk",
"sap-cloud-platform"
],
"repository": "github:SAP/cloud-sdk-js",
"workspaces": [
"packages/connectivity",
"packages/http-client",
"packages/mail-client",
"packages/openapi",
"packages/odata-common",
"packages/odata-v2",
"packages/odata-v4",
"packages/eslint-config",
"packages/generator",
"packages/test-util",
"packages/util",
"packages/openapi-generator",
"packages/generator-common",
"packages/temporal-de-serializers",
"packages/resilience",
"test-packages/integration-tests",
"test-packages/e2e-tests",
"test-packages/test-services-odata-common",
"test-packages/test-services-odata-v2",
"test-packages/test-services-odata-v4",
"test-packages/test-services-openapi",
"test-packages/test-services-e2e",
"test-packages/type-tests",
"test-packages/self-tests",
"build-packages/check-pr",
"build-packages/get-changelog"
],
"tsd": {
"directory": "test-packages/type-tests/test-new"
},
"scripts": {
"postinstall": "yarn compile",
"compile": "turbo run compile",
"test": "turbo run test",
"test:unit": "turbo run test --filter=./packages/*",
"test:build-packages": "turbo run test --filter=./build-packages/*",
"test:integration": "turbo run test --filter=integration-tests",
"test:type": "turbo run test --filter=type-tests",
"test:e2e": "turbo run test --filter=e2e-tests",
"test:self": "turbo run test --filter=self-tests",
"generate": "turbo run generate --force",
"readme": "turbo run readme",
"doc": "ts-node scripts/generate-docs.ts",
"preversion": "ts-node scripts/before-bump.ts",
"version": "changeset version",
"postversion": "yarn generate && yarn doc && ts-node scripts/after-bump.ts",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix --force",
"checks": "turbo run check && yarn run check:circular && yarn run check:license && yarn run check:test-service",
"check:circular": "madge --extensions ts --ts-config=./tsconfig.json --circular --exclude 'dist|test-packages|connectivity/src/scp-cf/environment-accessor.ts|http-client/src/csrf-token-header.ts' ./packages",
"check:dependencies": "turbo run check:dependencies",
"check:license": "ts-node scripts/check-licenses.ts",
"check:test-service": "yarn generate && yarn ts-node scripts/check-test-service-for-changes.ts",
"check:public-api": "turbo run check:public-api",
"connectivity": "yarn workspace @sap-cloud-sdk/connectivity",
"generator": "yarn workspace @sap-cloud-sdk/generator",
"generator-common": "yarn workspace @sap-cloud-sdk/generator-common",
"http-client": "yarn workspace @sap-cloud-sdk/http-client",
"mail-client": "yarn workspace @sap-cloud-sdk/mail-client",
"openapi": "yarn workspace @sap-cloud-sdk/openapi",
"resilience": "yarn workspace @sap-cloud-sdk/resilience",
"openapi-generator": "yarn workspace @sap-cloud-sdk/openapi-generator",
"odata-common": "yarn workspace @sap-cloud-sdk/odata-common",
"odata-v2": "yarn workspace @sap-cloud-sdk/odata-v2",
"odata-v4": "yarn workspace @sap-cloud-sdk/odata-v4",
"test-util": "yarn workspace @sap-cloud-sdk/test-util",
"util": "yarn workspace @sap-cloud-sdk/util",
"temporal-de-serializers": "yarn workspace @sap-cloud-sdk/temporal-de-serializers",
"e2e-tests": "yarn workspace @sap-cloud-sdk/e2e-tests",
"integration-tests": "yarn workspace @sap-cloud-sdk/integration-tests",
"type-tests": "yarn workspace @sap-cloud-sdk/type-tests"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/license-checker": "^25.0.6",
"@types/mock-fs": "^4.13.4",
"@types/node": "^18.19.2",
"@types/prettier": "3.0.0",
"@types/uuid": "^9.0.7",
"@types/voca": "^1.4.5",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"axios": "^1.6.2",
"depcheck": "^1.4.7",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-regex": "^1.10.0",
"eslint-plugin-unused-imports": "^3.0.0",
"execa": "^5.0.0",
"glob": "^10.3.10",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"license-checker": "^25.0.1",
"madge": "^6.1.0",
"prettier": "^3.1.0",
"puppeteer": "^21.6.0",
"semver": "^7.5.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"turbo": "^1.11.0",
"typedoc": "^0.25.4",
"typescript": "~5.2.2"
},
"resolutions": {
"@sap/cds": "^6.1.1",
"color-string": ">=1.5.5",
"detective-postcss": "^6.1.0",
"dot-prop": "^6.0.1",
"json-schema": ">=0.4.0",
"netmask": ">=2.0.1 ",
"path-parse": ">=1.0.7",
"postcss": ">=8.2.10",
"tar": ">=6.1.2",
"yaml": ">=2.2.2",
"@types/lodash": ">=4.14.200"
}
}