-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.16 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
{
"name": "business-days-js",
"version": "2.3.1",
"description": "Checks whether a date is on a weekend or a U.S. holiday",
"source": "src/index.ts",
"main": "dist/index.umd.js",
"module": "dist/index.modern.module.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.umd.js",
"dependencies": {
"date-holidays": "^3.19.0",
"dayjs": "^1.9.6"
},
"devDependencies": {
"@babel/preset-typescript": "^7.21.0",
"@types/jest": "^29.5.0",
"babel-preset-env": "^1.7.0",
"eslint": "^7.14.0",
"jest": "^29.5.0",
"microbundle": "^0.15.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"scripts": {
"build": "microbundle --name getPkg",
"dev": "microbundle watch",
"test": "jest",
"coverage": "jest --coverage",
"watch": "jest --watch",
"pub": "npm run build && npm publish",
"pre": "npm version prerelease --preid=alpha",
"pre-pub": "npm run build && npm publish --tag alpha"
},
"author": "Daniel Simmons-Ritchie",
"license": "MIT",
"repository": "simmonsritchie/business-days-js",
"keywords": [
"business",
"dates",
"holidays",
"dayjs"
]
}