-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.57 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.57 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
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": "@bratislava/ginis-sdk",
"version": "2.2.0",
"description": "A small wrapper for most commonly used requests towards the Bratislava GINIS system",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --dts",
"test": "jest --watch",
"test:detect": "jest --watch --detectOpenHandles",
"typecheck": "tsc",
"lint": "eslint \"{src,apps,libs,test}/**/*.{ts,js}\"",
"lint:report": "eslint -f json -o eslint-report.json \"{src,apps,libs,test}/**/*.{ts,js}\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.{ts,js}\" --fix"
},
"bin": {
"ginis-sdk": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bratislava/ginis-sdk.git"
},
"keywords": [],
"author": "",
"private": false,
"license": "EUPL-1.2",
"bugs": {
"url": "https://github.com/bratislava/ginis-sdk/issues"
},
"homepage": "https://github.com/bratislava/ginis-sdk#readme",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@darraghor/eslint-plugin-nestjs-typed": "^7.1.26",
"@eslint/js": "^9.39.4",
"@eslint/json": "^1.1.0",
"@eslint/markdown": "^7.5.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint-plugin-security": "^3.0.1",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.24",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"babel-jest": "^30.3.0",
"dotenv": "^17.3.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-jest-async": "^1.0.3",
"eslint-plugin-no-unsanitized": "^4.1.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^4.0.2",
"eslint-plugin-xss": "^0.1.12",
"jest": "^30.3.0",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0"
},
"overrides": {
"glob": "^13.0.6",
"minimatch": "^10.2.4"
},
"engines": {
"node": ">=20.9.x",
"npm": ">=10.2.x"
},
"dependencies": {
"axios": "^1.13.6",
"lodash": "^4.17.23",
"uuid": "^11.1.0",
"xml2js": "^0.6.2",
"zod": "^4.3.6"
},
"volta": {
"node": "22.14.0",
"npm": "11.1.0"
}
}