-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
58 lines (58 loc) · 1.44 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
56
57
58
{
"name": "date-and-time",
"version": "3.6.0",
"description": "A Minimalist DateTime utility for Node.js and the browser",
"main": "date-and-time.js",
"module": "esm/date-and-time.es.js",
"types": "date-and-time.d.ts",
"unpkg": "date-and-time.min.js",
"exports": {
".": {
"types": "./date-and-time.d.ts",
"import": "./esm/date-and-time.mjs",
"require": "./date-and-time.js",
"browser": "./esm/date-and-time.es.js"
},
"./locale/*": {
"types": "./locale/*.d.ts",
"import": "./esm/locale/*.mjs",
"require": "./locale/*.js",
"browser": "./esm/locale/*.es.js"
},
"./plugin/*": {
"types": "./plugin/*.d.ts",
"import": "./esm/plugin/*.mjs",
"require": "./plugin/*.js",
"browser": "./esm/plugin/*.es.js"
}
},
"scripts": {
"build": "rollup -c",
"test": "./test.sh",
"test:ts": "tsd ./test/ts"
},
"repository": {
"type": "git",
"url": "https://github.com/knowledgecode/date-and-time.git"
},
"keywords": [
"date",
"time",
"format",
"parse",
"utility"
],
"author": "KNOWLEDGECODE",
"license": "MIT",
"bugs": {
"url": "https://github.com/knowledgecode/date-and-time/issues"
},
"homepage": "https://github.com/knowledgecode/date-and-time",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"expect.js": "^0.3.1",
"mocha": "^10.7.3",
"rollup": "^4.22.5",
"tsd": "^0.31.2"
}
}