This repository has been archived by the owner on Jun 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.84 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
{
"private": true,
"sideEffects": false,
"workspaces": [
"packages/core",
"packages/models",
"packages/adapter",
"packages/integration-objects"
],
"dependencies": {
"lerna": "^4.0.0"
},
"devDependencies": {
"@sap-cloud-sdk/core": "^1.32.1",
"@sap-cloud-sdk/util": "^2.1.0",
"@types/jest": "^27.0.1",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.1-alpha.1",
"depcheck": "^1.0.0",
"eslint": "^7.9.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^1.1.0",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"prettier": "^2.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typedoc": "^0.22.3",
"typescript": "^4.0.2"
},
"scripts": {
"test": "yarn workspaces run test",
"test:unit": "yarn lerna run test",
"core:test": "yarn core test",
"core:prepare": "yarn core prepare",
"model:prepare": "yarn models prepare",
"adapter:prepare": "yarn adapter prepare",
"core": "yarn workspace @sap-cloud-sdk/currency-conversion-core",
"models": "yarn workspace @sap-cloud-sdk/currency-conversion-models",
"adapter": "yarn workspace @sap-cloud-sdk/currency-conversion-data-adapter",
"integration-objects": "yarn workspace @sap-cloud-sdk/currency-conversion-integration-objects",
"compile": "yarn lerna run compile",
"adapter:lint": "yarn adapter lint",
"adapter:lint:fix": "yarn adapter lint --fix",
"lint": "yarn eslint --ext .ts .",
"lint:fix": "yarn lint --fix",
"lint:fix-cached": "yarn lint:fix --cache",
"doc": "yarn typedoc --options typedoc.json"
},
"name": "currency-conversion-library",
"version": "0.1.1"
}