-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 957 Bytes
/
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
{
"name": "@itenium/date-holidays-be",
"version": "1.0.0",
"private": false,
"description": "Zero dependency functions to determine the official Belgian holidays for a given year in NL/FR/EN/DE",
"homepage": "https://github.com/itenium-be/date-holidays-be",
"bugs": {
"url": "https://github.com/itenium-be/date-holidays-be/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itenium-be/date-holidays-be.git"
},
"keywords": [
"Holidays", "Belgium"
],
"author": "Itenium",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=10.13.0"
},
"files": [
"dist"
],
"main": "./dist/belgianHolidays.js",
"types": "./dist/belgianHolidays.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}