-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "swedish-holidays",
"version": "1.1.2",
"description": "Library for calculating the date of all swedish holidays for any given year.",
"main": "./dist/index.js",
"scripts": {
"build": "rm -rf ./dist && tsc",
"test": "node --loader tsx --test ./tests/*",
"prettier:all": "prettier --write ./src && prettier --write ./tests",
"pretty": "pretty-quick --staged",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pythe1337N/swedish-holidays.git"
},
"keywords": [
"holiday",
"holidays",
"sweden",
"easter",
"helger",
"helgdag",
"helgdagar",
"sverige",
"påsk"
],
"author": "Oskar Bernberg (Pythe1337N)",
"license": "MIT",
"files": [
"dist/*",
"examples/*"
],
"devDependencies": {
"@types/node": "^18.11.17",
"pre-commit": "^1.2.2",
"prettier": "^2.8.1",
"pretty-quick": "^3.1.3",
"tsx": "^3.12.1",
"typescript": "^4.9.4"
},
"pre-commit": "pretty",
"homepage": "https://github.com/Pythe1337N/swedish-holidays#readme",
"bugs": {
"url": "https://github.com/Pythe1337N/swedish-holidays/issues"
},
"runkitExampleFilename": "./examples/example.js"
}