-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 1.95 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "cdate",
"description": "a compact calendar date",
"version": "0.0.7",
"author": "@kawanet",
"browser": "./dist/cdate.min.js",
"bugs": {
"url": "https://github.com/kawanet/cdate/issues"
},
"contributors": [
"Yusuke Kawasaki <[email protected]>",
"CasheeeewNuts <[email protected]>"
],
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.0",
"@types/benchmark": "^2.1.2",
"@types/luxon": "^3.3.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.9",
"@types/strftime": "^0.9.4",
"benchmark": "^2.1.4",
"browserify": "^17.0.0",
"browserify-sed": "^0.8.0",
"dayjs": "^1.11.9",
"luxon": "^3.4.0",
"mocha": "^10.2.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"rollup": "^3.28.0",
"strftime": "^0.10.2",
"terser": "^5.19.2",
"typescript": "^5.1.6"
},
"exports": {
"import": "./index.js",
"require": "./dist/cdate.js"
},
"files": [
"browser/import.cjs",
"dist/cdate.js",
"dist/cdate.min.js",
"dist/package.json",
"index.d.ts",
"index.js",
"src/*.js",
"src/*/*.js"
],
"homepage": "https://github.com/kawanet/cdate#readme",
"keywords": [
"calendar",
"date",
"moment",
"strftime",
"time"
],
"license": "MIT",
"main": "./dist/cdate.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kawanet/cdate.git"
},
"scripts": {
"benchmark": "node cli/benchmark.js",
"build": "tsc -p .",
"build-cjs": "make clean all",
"fixpack": "fixpack",
"prepack": "npm run build-cjs && npm run test-cjs && npm run build && npm test && npm run test-timezone",
"test": "mocha test",
"test-cjs": "make test",
"test-timezone": "for tz in Asia/Tokyo Asia/Kathmandu Europe/London America/St_Johns America/Los_Angeles; do echo TZ=$tz mocha test; TZ=$tz mocha test || break; done"
},
"sideEffects": false,
"type": "module",
"types": "./index.d.ts"
}