-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "webuntis",
"version": "2.2.1",
"description": "WebUntis API",
"main": "dist/webuntis.js",
"module": "dist/webuntis.mjs",
"typings": "dist/webuntis.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/SchoolUtils/WebUntis.git"
},
"author": "Nils Bergmann <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"dist",
"docs"
],
"dependencies": {
"axios": "^1.6.7",
"date-fns": "^3.3.1"
},
"optionalDependencies": {
"otplib": "^12"
},
"devDependencies": {
"axios-mock-adapter": "^1.22.0",
"dotenv": "^16.4.1",
"esbuild": "^0.20.0",
"jest": "^29.7.0",
"jest-in-case": "^1.0.2",
"otplib": "^12",
"prettier": "^3.2.5",
"rollup": "^4.9.6",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.1",
"typedoc": "^0.25.7",
"typescript": "^5.3.3"
},
"scripts": {
"prepublish": "rollup -c && typedoc",
"generate-doc": "typedoc",
"test": "jest",
"format": "prettier -w src/"
}
}