-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1006 Bytes
/
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": "zoned-date",
"version": "0.1.3",
"description": "Timezone-aware better Javascript Date",
"main": "index.cjs",
"type": "module",
"exports": {
".": {
"require": "./index.cjs",
"import": "./index.mjs",
"types": "./index.d.ts"
},
"./OffsetDate": {
"require": "./OffsetDate.cjs",
"import": "./OffsetDate.mjs",
"types": "./OffsetDate.d.ts"
},
"./ZonedDate": {
"require": "./ZonedDate.cjs",
"import": "./ZonedDate.mjs",
"types": "./ZonedDate.d.ts"
}
},
"scripts": {
"prepublishOnly": "./build.sh",
"test": "node --test test.mjs"
},
"files": [
"index.cjs",
"index.mjs",
"index.d.ts",
"OffsetDate.cjs",
"OffsetDate.mjs",
"OffsetDate.d.ts",
"ZonedDate.cjs",
"ZonedDate.mjs",
"ZonedDate.d.ts"
],
"repository": "github:tranvansang/zoned-date",
"homepage": "https://github.com/tranvansang/zoned-date",
"author": "Sang Tran <[email protected]>",
"license": "MIT"
}