-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.68 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
{
"name": "azubiheft-api",
"version": "1.0.0",
"description": "TypeScript/Node.js API client for azubiheft.de - automated Berichtsheft management for German apprenticeships",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"build:esm": "tsc --module esnext --outDir dist/esm",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir dist",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "echo \"Tests not implemented yet\" && exit 0"
},
"keywords": [
"azubiheft",
"berichtsheft",
"ausbildung",
"apprenticeship",
"germany",
"api",
"typescript",
"automation"
],
"author": "StandartCoder",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"axios-cookiejar-support": "^5.0.0",
"cheerio": "^1.0.0-rc.12",
"tough-cookie": "^4.1.3"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/tough-cookie": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/StandartCoder/azubiheft-api.git"
},
"bugs": {
"url": "https://github.com/StandartCoder/azubiheft-api/issues"
},
"homepage": "https://github.com/StandartCoder/azubiheft-api#readme"
}