-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "black-friday",
"version": "0.2.0",
"description": "A lightweight, dependency-free utility to calculate Thanksgiving, Black Friday, and Cyber Monday dates for a given year.",
"license": "MIT",
"keywords": [
"black-friday",
"cyber-monday",
"thanksgiving"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mattiamalonni/black-friday.git"
},
"author": {
"name": "Mattia Malonni",
"email": "[email protected]"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/mattiamalonni/black-friday/issues"
},
"homepage": "https://github.com/mattiamalonni/black-friday#readme",
"scripts": {
"build": "npm i && tsup",
"deploy": "npm i && tsup && npm publish"
},
"devDependencies": {
"@types/node": "^20.12.8",
"eslint": "^9.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
}
}