@bratislava/ginis-sdk 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +102 -67
- package/dist/index.d.ts +2096 -230
- package/dist/index.js +1055 -119
- package/package.json +53 -28
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bratislava/ginis-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "A small wrapper for most commonly used requests towards the Bratislava GINIS system",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -10,9 +10,11 @@
|
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "tsup src/index.ts --dts",
|
|
12
12
|
"test": "jest --watch",
|
|
13
|
+
"test:detect": "jest --watch --detectOpenHandles",
|
|
13
14
|
"typecheck": "tsc",
|
|
14
|
-
"lint": "eslint
|
|
15
|
-
"lint:
|
|
15
|
+
"lint": "eslint \"{src,apps,libs,test}/**/*.{ts,js}\"",
|
|
16
|
+
"lint:report": "eslint -f json -o eslint-report.json \"{src,apps,libs,test}/**/*.{ts,js}\"",
|
|
17
|
+
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.{ts,js}\" --fix"
|
|
16
18
|
},
|
|
17
19
|
"bin": {
|
|
18
20
|
"ginis-sdk": "./bin/index.js"
|
|
@@ -30,39 +32,62 @@
|
|
|
30
32
|
},
|
|
31
33
|
"homepage": "https://github.com/bratislava/ginis-sdk#readme",
|
|
32
34
|
"devDependencies": {
|
|
33
|
-
"@babel/core": "^7.
|
|
34
|
-
"@babel/preset-env": "^7.
|
|
35
|
-
"@babel/preset-typescript": "^7.
|
|
36
|
-
"@
|
|
37
|
-
"@
|
|
38
|
-
"@
|
|
39
|
-
"@
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
35
|
+
"@babel/core": "^7.26.9",
|
|
36
|
+
"@babel/preset-env": "^7.26.9",
|
|
37
|
+
"@babel/preset-typescript": "^7.26.0",
|
|
38
|
+
"@darraghor/eslint-plugin-nestjs-typed": "^6.2.4",
|
|
39
|
+
"@eslint/js": "^9.20.0",
|
|
40
|
+
"@eslint/json": "^0.10.0",
|
|
41
|
+
"@eslint/markdown": "^6.2.2",
|
|
42
|
+
"@types/eslint-config-prettier": "^6.11.3",
|
|
43
|
+
"@types/eslint-plugin-security": "^3.0.0",
|
|
44
|
+
"@types/jest": "^29.5.14",
|
|
45
|
+
"@types/lodash": "^4.17.15",
|
|
46
|
+
"@types/uuid": "^10.0.0",
|
|
47
|
+
"@types/xml2js": "^0.4.14",
|
|
48
|
+
"@typescript-eslint/eslint-plugin": "^8.24.1",
|
|
49
|
+
"@typescript-eslint/parser": "^8.24.1",
|
|
50
|
+
"babel-jest": "^29.7.0",
|
|
51
|
+
"dotenv": "^16.4.7",
|
|
52
|
+
"eslint": "^9.20.1",
|
|
53
|
+
"eslint-config-prettier": "^10.0.1",
|
|
44
54
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
45
|
-
"eslint-plugin-
|
|
46
|
-
"eslint-plugin-
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
55
|
+
"eslint-plugin-jest": "^28.11.0",
|
|
56
|
+
"eslint-plugin-jest-async": "^1.0.3",
|
|
57
|
+
"eslint-plugin-no-unsanitized": "^4.1.2",
|
|
58
|
+
"eslint-plugin-node": "^11.1.0",
|
|
59
|
+
"eslint-plugin-security": "^3.0.1",
|
|
60
|
+
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
61
|
+
"eslint-plugin-sonarjs": "^3.0.2",
|
|
62
|
+
"eslint-plugin-xss": "^0.1.12",
|
|
63
|
+
"jest": "^29.7.0",
|
|
64
|
+
"jiti": "^2.4.2",
|
|
65
|
+
"prettier": "^3.5.1",
|
|
66
|
+
"ts-jest": "^29.2.5",
|
|
67
|
+
"ts-loader": "^9.5.2",
|
|
68
|
+
"tsup": "^8.3.6",
|
|
69
|
+
"typescript": "^5.7.3",
|
|
70
|
+
"typescript-eslint": "^8.24.1"
|
|
71
|
+
},
|
|
72
|
+
"overrides": {
|
|
73
|
+
"glob": "^11.0.1"
|
|
52
74
|
},
|
|
53
75
|
"engines": {
|
|
54
|
-
"node": ">=
|
|
55
|
-
"npm": ">=
|
|
56
|
-
"yarn": "1.22"
|
|
76
|
+
"node": ">=22.x.x",
|
|
77
|
+
"npm": ">=11.x.x"
|
|
57
78
|
},
|
|
58
79
|
"dependencies": {
|
|
59
|
-
"axios": "^1.
|
|
60
|
-
"crypto-browserify": "^3.12.
|
|
80
|
+
"axios": "^1.7.9",
|
|
81
|
+
"crypto-browserify": "^3.12.1",
|
|
61
82
|
"lodash": "^4.17.21",
|
|
62
83
|
"stream-browserify": "^3.0.0",
|
|
63
|
-
"typescript": "5.
|
|
84
|
+
"typescript": "5.7.3",
|
|
85
|
+
"uuid": "^11.0.5",
|
|
86
|
+
"xml2js": "^0.6.2",
|
|
87
|
+
"zod": "^3.24.2"
|
|
64
88
|
},
|
|
65
89
|
"volta": {
|
|
66
|
-
"node": "
|
|
90
|
+
"node": "22.14.0",
|
|
91
|
+
"npm": "11.1.0"
|
|
67
92
|
}
|
|
68
93
|
}
|