-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.68 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.68 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
{
"name": "@sap-cloud-sdk/openapi-generator",
"version": "3.24.0",
"description": "SAP Cloud SDK for JavaScript OpenAPI client generator",
"homepage": "https://sap.github.io/cloud-sdk/docs/js/overview",
"license": "Apache-2.0",
"keywords": [
"sap-cloud-sdk",
"cloud-sdk",
"sap-cloud-platform",
"generator"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"openapi-generator": "./dist/cli.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"internal.d.ts",
"internal.js"
],
"repository": "github:SAP/cloud-sdk-js",
"scripts": {
"compile": "tsc -b",
"prepublishOnly": "yarn compile && yarn readme",
"test": "yarn test:unit",
"test:unit": "yarn node --experimental-vm-modules ../../node_modules/jest/bin/jest.js",
"coverage": "jest --coverage",
"lint": "eslint --ext .ts . && prettier . --config ../../.prettierrc --ignore-path ../../.prettierignore -c",
"lint:fix": "set TIMING=1 && eslint --ext .ts . --fix --quiet && prettier . --config ../../.prettierrc --ignore-path ../../.prettierignore -w --log-level error",
"check:dependencies": "depcheck . --ignores='@sap-cloud-sdk/openapi'",
"readme": "ts-node ../../scripts/replace-common-readme.ts"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.1",
"@sap-cloud-sdk/generator-common": "^3.24.0",
"@sap-cloud-sdk/openapi": "^3.24.0",
"@sap-cloud-sdk/util": "^3.24.0",
"js-yaml": "^4.0.0",
"openapi-types": "^12.1.3",
"swagger2openapi": "^7.0.4"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"mock-fs": "^5.5.0",
"prettier": "^3.5.0",
"typescript": "~5.7.3"
}
}