-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.1 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
{
"name": "sci-rest-client",
"version": "1.4.0",
"description": "NodeJS based client for the SAP Cloud Integration REST API",
"contributors": [
{
"name": "Marcel Schork",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/SchwarzIT/sci-rest-client.git"
},
"keywords": [
"SAP",
"Cloud Integration",
"API",
"REST"
],
"type": "module",
"main": "./dist/client/SCIRestClient.js",
"exports": {
".": "./dist/client/SCIRestClient.js",
"./*": "./dist/*.js"
},
"types": "./dist/client/SCIRestClient.d.ts",
"typesVersions": {
"*": {
"./*": [
"./dist/*"
]
}
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"license": "Apache-2.0",
"scripts": {
"test": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"format": "prettier --write \"**/*.(ts|json|yml|yaml|xml)\"",
"lint": "eslint . --ext .ts",
"build": "shx rm -rf dist && tsc --project tsconfig.build.json && shx cp -r src/lib/types dist/types",
"ncu": "ncu",
"bump-deps": "ncu -u"
},
"devDependencies": {
"@types/node": "20.12.7",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "7.5.0",
"@typescript-eslint/parser": "7.6.0",
"@vitest/coverage-c8": "0.33.0",
"@vitest/ui": "1.4.0",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"isolated": "3.0.25",
"lint-staged": "15.2.2",
"npm-check-updates": "16.14.18",
"prettier": "3.2.5",
"replace-in-file": "7.1.0",
"shx": "0.3.4",
"simple-git-hooks": "2.11.1",
"typescript": "5.4.5",
"uuid": "9.0.1",
"vite": "5.2.8",
"vitest": "1.4.0"
},
"dependencies": {
"@odata/client": "2.21.8",
"axios": "1.6.8",
"loglevel": "1.9.1",
"zip-a-folder": "3.1.6"
}
}