-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
108 lines (108 loc) · 2.93 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "light-date",
"version": "1.2.0",
"description": "Blazing fast & lightweight (180 bytes) date formatting for Node.js and the browser.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"author": "Antoni Kepinski <[email protected]> (https://kepinski.me)",
"bugs": {
"url": "https://github.com/xxczaki/light-date/issues"
},
"scripts": {
"prebuild": "del-cli dist",
"esm": "tsc --module esnext && cpy dist/index.js dist --rename index.esm.js",
"cjs": "tsc --module commonjs",
"build": "npm run esm && npm run cjs",
"size": "size-limit",
"test": "xo && cross-env NODE_ICU_DATA=node_modules/full-icu c8 ava && c8 report --reporter=lcov",
"benchmark": "ts-node -T benchmark.ts",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=10"
},
"license": "MIT",
"repository": "xxczaki/light-date",
"homepage": "https://github.com/xxczaki/light-date",
"keywords": [
"light-date",
"date-format",
"format-date",
"date",
"date-fns",
"dayjs",
"date-formatting",
"formatting-date",
"format",
"moment",
"format-time",
"time-format",
"time",
"dayjs",
"typescript",
"date-time-format"
],
"devDependencies": {
"@akepinski/tsconfig": "0.0.2",
"@size-limit/preset-small-lib": "^4.7.0",
"@types/benchmark": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"ava": "^3.13.0",
"benchmark": "^2.1.4",
"c8": "^7.3.5",
"cli-table3": "^0.6.0",
"coveralls": "^3.1.0",
"cpy-cli": "^3.1.1",
"cross-env": "^7.0.2",
"date-fns": "^2.16.1",
"date-format": "^3.0.0",
"dayjs": "^1.9.6",
"del-cli": "^3.0.1",
"eslint-config-xo-typescript": "^0.35.0",
"full-icu": "^1.3.1",
"moment": "^2.29.1",
"size-limit": "^4.7.0",
"ts-node": "^9.0.0",
"type-fest": "^0.19.0",
"typescript": "^4.0.5",
"xo": "^0.34.2"
},
"sideEffects": false,
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"xo": {
"extends": "xo-typescript",
"extensions": [
"ts"
],
"rules": {
"import/no-anonymous-default-export": 0
}
},
"size-limit": [
{
"name": "format",
"path": "dist/index.esm.js",
"import": "{format}",
"limit": "180 B"
},
{
"name": "localeFormat",
"path": "dist/index.esm.js",
"import": "{localeFormat}",
"limit": "193 B"
}
],
"dependencies": {}
}