This repository has been archived by the owner on Jan 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
125 lines (125 loc) · 3.51 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "vanellus",
"description": "Api and abstractions of the Kiebitz appointment sheduling software",
"version": "0.8.1",
"license": "AGPL-3.0",
"author": "KIProtect GmbH",
"homepage": "https://github.com/impfen/vanellus-inoeg",
"repository": {
"type": "git",
"url": "https://github.com/impfen/vanellus-inoeg.git"
},
"engines": {
"node": ">=16.0.0"
},
"sideEffects": false,
"type": "module",
"exports": {
"types": "./src/index.ts",
"import": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./src/index.ts",
"source": "./src/index.ts",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"build:docs": "typedoc --out ./docs src",
"test": "jest --runInBand",
"lint": "eslint . --ext .ts --ignore-path .gitignore",
"lint:fix": "eslint . --ext .ts --ignore-path .gitignore --fix",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
"dayjs": "^1.11.0"
},
"devDependencies": {
"@scure/base": "^1.0.0",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"buffer": "^6.0.3",
"destr": "^1.1.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"node-fetch": "^3.2.3",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"tsup": "^5.12.4",
"typedoc": "^0.22.13",
"typescript": "^4.6.3"
},
"peerDependencies": {
"dayjs": "^1.10"
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"testEnvironment": "./testing/TestEnvironment.mjs",
"testMatch": [
"**/?(*.)+(test).[tj]s?(x)"
],
"verbose": true
},
"eslintConfig": {
"env": {
"browser": true,
"es2020": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
"sourceType": "module",
"ecmaVersion": 2019
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:promise/recommended",
"plugin:prettier/recommended"
],
"rules": {},
"overrides": [
{
"files": [
"**/*.test.js"
],
"env": {
"jest": true
},
"plugins": [
"jest"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"plugin:promise/recommended",
"plugin:jest/all"
]
}
]
},
"tsup": {
"entry": [
"src/index.ts"
],
"sourcemap": true,
"dts": true,
"minify": true,
"clean": true,
"format": [
"esm"
]
}
}