-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.31 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.31 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
{
"name": "@sap-cloud-sdk/test-util",
"version": "3.24.0",
"description": "SAP Cloud SDK for JavaScript test utilities",
"homepage": "https://sap.github.io/cloud-sdk/docs/js/overview",
"license": "Apache-2.0",
"keywords": [
"sap-cloud-sdk",
"cloud-sdk",
"sap-cloud-platform",
"test-util"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map"
],
"repository": "github:SAP/cloud-sdk-js",
"scripts": {
"compile": "tsc -b",
"prepublishOnly": "yarn compile && yarn readme",
"test": "yarn test:unit",
"test:unit": "jest",
"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 .",
"readme": "ts-node ../../scripts/replace-common-readme.ts"
},
"dependencies": {
"@sap-cloud-sdk/connectivity": "^3.24.0",
"@sap-cloud-sdk/util": "^3.24.0"
},
"devDependencies": {
"mock-fs": "^5.5.0",
"typescript": "~5.7.3"
}
}