forked from SAP/cloud-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.51 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
{
"name": "sap-cloud-sdk",
"private": true,
"sideEffects": false,
"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",
"workspaces": [
"packages/analytics",
"packages/core",
"packages/generator",
"packages/test-util",
"packages/util",
"test-packages/integration-tests",
"test-packages/e2e-tests",
"test-packages/test-services",
"test-packages/test-services-e2e",
"test-packages/type-tests"
],
"scripts": {
"postinstall": "yarn compile",
"test": "yarn workspaces run test",
"test:unit": "yarn lerna run test --ignore \"@sap-cloud-sdk/integration-tests\" --ignore \"@sap-cloud-sdk/type-tests\" --ignore \"@sap-cloud-sdk/e2e-tests\"",
"test:integration": "yarn workspace @sap-cloud-sdk/integration-tests run test",
"test:type": "yarn workspace @sap-cloud-sdk/type-tests run test",
"test:e2e": "yarn workspace @sap-cloud-sdk/e2e-tests run test",
"e2e-test:build": "cd test-packages/e2e-tests && yarn deploy:to-sqlite",
"e2e-test:start-server": "cd test-packages/e2e-tests && yarn start",
"e2e-test:start-server:deamon": "cd test-packages/e2e-tests && yarn start:daemon",
"generate:test-services:v2": "yarn generate v2 && yarn lint:fix && yarn install",
"generate:test-services:v4": "yarn generate v4 && yarn lint:fix && yarn install",
"generate:test-services:e2e": "yarn generate e2e && yarn lint:fix && yarn install",
"generate:test-services": "yarn generate all && yarn lint:fix && yarn install",
"generate": "yarn workspace @sap-cloud-sdk/generator run compile && yarn ts-node scripts/generate-test-services.ts",
"compile": "yarn lerna run compile",
"doc": "node scripts/generate-docs.js",
"version": "node scripts/after-bump.js && yarn doc && git add .",
"lint": "yarn eslint --ext .ts .",
"lint:fix": "yarn lint --fix",
"lint:fix-cached": "yarn lint:fix --cache",
"check:circular": "yarn madge --circular ./packages/core",
"check:dependencies": "yarn workspaces run check:dependencies",
"check:license": "node scripts/check-licenses.js",
"check:vulnerability": "yarn audit-ci -h",
"bump:patch": "yarn lerna version patch --force-publish -y",
"bump:minor": "yarn lerna version minor --force-publish -y",
"core": "yarn workspace @sap-cloud-sdk/core",
"util": "yarn workspace @sap-cloud-sdk/util",
"generator": "yarn workspace @sap-cloud-sdk/generator"
},
"devDependencies": {
"@types/jest": "^26.0.7",
"@types/jsonwebtoken": "^8.3.8",
"@types/uuid": "^8.0.0",
"@types/voca": "^1.4.0",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"audit-ci": "^3.1.1",
"compare-versions": "^3.6.0",
"depcheck": "^1.0.0",
"eslint": "^7.5.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-unused-imports": "^0.1.2",
"glob": "^7.1.6",
"jest": "^25.2.4",
"jest-junit": "^11.1.0",
"lerna": "^3.22.1",
"license-checker": "^25.0.1",
"madge": "^3.9.2",
"prettier": "^2.0.2",
"ts-jest": "^25.4.0",
"ts-node": "^9.0.0",
"typedoc": "^0.18.0",
"typedoc-plugin-lerna-packages": "0.3.0",
"typescript": "~3.9.6"
},
"dependencies": {},
"resolutions": {
"@types/node": "^12.0.0",
"dot-prop": "^5.1.1"
}
}