-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.37 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
{
"name": "11holidays",
"version": "1.0.1",
"description": "Global holidays API for public holidays, bank holidays and observances from 230+ countries",
"main": "dist/index.js",
"module": "dist/index.m.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf ./dist && microbundle --tsconfig tsconfig.json --no-sourcemap",
"dev": "ts-node-dev lib/index.ts",
"test": "npx playwright test",
"dev-test": "ts-node-dev lib/test.ts"
},
"exports": {
"require": "./dist/index.js",
"default": "./dist/index.modern.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dayschedule/11holidays.git"
},
"keywords": [
"holiday",
"holidays",
"calendar",
"holidaysapi",
"holidays-api",
"bank-holidays",
"national-holidays",
"observances"
],
"author": "https://github.com/vickyRathee",
"license": "MIT",
"bugs": {
"url": "https://github.com/dayschedule/11holidays/issues"
},
"homepage": "https://github.com/dayschedule/11holidays",
"dependencies": {
"axios": "^1.5.1"
},
"devDependencies": {
"@playwright/test": "^1.38.1",
"@types/node": "^20.8.3",
"dotenv": "^16.3.1",
"microbundle": "^0.15.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}