generated from sebbo2002/js-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.17 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
64
65
66
67
68
69
70
71
72
73
{
"author": "Sebastian Pekarek <[email protected]>",
"bin": {
"fitness-first-ical-proxy": "./dist/bin/start.js"
},
"bugs": {
"url": "https://github.com/sebbo2002/fitness-first-ical-proxy/issues"
},
"dependencies": {
"express": "^4.21.2",
"ical-generator": "^8.0.1"
},
"description": "Small proxy that provides the course schedule from fitnessfirst.de/kurse as an iCal calendar.",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@qiwi/semantic-release-gh-pages-plugin": "^5.2.12",
"@sebbo2002/semantic-release-docker": "^5.0.1-develop.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.9.0",
"c8": "^10.1.2",
"eslint": "^9.13.0",
"eslint-plugin-jsonc": "^2.18.1",
"esm": "^3.2.25",
"license-checker": "^25.0.1",
"mocha": "^10.8.2",
"mochawesome": "^7.1.3",
"nyc": "^17.1.0",
"semantic-release-license": "^1.0.3",
"source-map-support": "^0.5.21",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typedoc": "^0.26.11",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
},
"engines": {
"node": "18 || 20 || >=22.0.0"
},
"exports": {
"import": "./dist/lib/index.js",
"require": "./dist/lib/index.cjs"
},
"files": [
"/dist"
],
"homepage": "https://github.com/sebbo2002/fitness-first-ical-proxy#readme",
"license": "MIT",
"main": "./dist/lib/index.cjs",
"module": "./dist/lib/index.js",
"name": "@sebbo2002/fitness-first-ical-proxy",
"repository": {
"type": "git",
"url": "git+https://github.com/sebbo2002/fitness-first-ical-proxy.git"
},
"scripts": {
"build": "tsup && cp ./dist/lib/index.d.ts ./dist/lib/index.d.cts",
"build-all": "./.github/workflows/build.sh",
"coverage": "c8 mocha",
"develop": "tsx src/bin/start.ts",
"license-check": "license-checker --production --summary",
"lint": "eslint .",
"start": "node ./dist/bin/start.js",
"test": "mocha"
},
"type": "module",
"version": "1.0.0-test.1"
}