-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.71 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
{
"name": "indiware-api",
"version": "2.0.2",
"description": "A fully-typed wrapper for the Indiware API, used by Vertretungsapp",
"author": "Vertretungsapp Development",
"type": "module",
"main": "lib/cjs/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm-run-all -l clean -p build:esm build:cjs build:declarations",
"build:esm": "cross-env BABEL_ENV=esmUnbundled babel src --extensions '.ts' --out-dir 'lib'",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --extensions '.ts' --out-dir 'lib/cjs'",
"build:declarations": "tsc -p tsconfig.json",
"clean": "rimraf lib",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vertretungsapp/indiware-api.git"
},
"keywords": [
"indiware",
"stundenplan24"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Vertretungsapp/indiware-api/issues"
},
"homepage": "https://github.com/Vertretungsapp/indiware-api#readme",
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@types/luxon": "^3.4.2",
"@types/node": "^22.5.1",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"rimraf": "^6.0.1",
"typescript": "^5.5.4"
},
"dependencies": {
"axios": "^1.7.6",
"cool-ini-parser": "^1.1.1",
"fast-xml-parser": "^4.4.1",
"luxon": "^3.5.0"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"exports": {
".": "./lib/index.js",
"./parser": "./lib/parser",
"./interface": "./lib/interface",
"./error": "./lib/errors"
}
}