-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "business-day",
"version": "1.1.0",
"description": "Let your date libaray like Moment.js can count holidays!",
"repository": {
"type": "git",
"url": "https://github.com/jackypan1989/business-day"
},
"keywords": [
"business-day",
"working-day",
"moment"
],
"author": "[email protected]",
"license": "MIT",
"main": "dist/business-day.cjs.js",
"module": "dist/business-day.esm.js",
"browser": "dist/business-day.umd.js",
"dependencies": {
"date-fns": "2.16.1",
"dayjs": "1.9.1",
"moment": "2.29.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "15.1.0",
"@rollup/plugin-node-resolve": "9.0.0",
"esbuild": "0.7.9",
"rollup": "2.28.2",
"rollup-plugin-esbuild": "2.5.0",
"ts-node": "9.0.0",
"typescript": "4.0.3"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "ts-node test/index.ts",
"example": "cd example && node index.js",
"tsc": "tsc --noEmit"
},
"files": [
"dist"
]
}