-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1 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": "date-toolkit",
"version": "0.8.7",
"description": "The package used to learn the date time related calculation algorithm (Not guaranteed to be bug free)",
"type": "module",
"main": "index.js",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"build": "node build"
},
"keywords": [
"date",
"date formate",
"datetime",
"dates-utils",
"date-tools",
"datekit",
"isLeapYear",
"daysInMonth",
"dayOfYear",
"timestamp formatter",
"monthDiff",
"isEqual",
"add date",
"diff date",
"quarter"
],
"author": "full-stop",
"license": "ISC",
"homepage": "https://github.com/full-stop/date-toolkit#readme",
"bugs": {
"url": "https://github.com/full-stop/date-toolkit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/full-stop/date-toolkit"
},
"devDependencies": {
"dayjs": "^1.11.5",
"jest": "^29.1.2",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2"
}
}