-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.09 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.09 KB
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
{
"name": "css-time-sort",
"version": "3.0.1",
"description": "Sort an array of CSS <time> values",
"keywords": [
"animation",
"array",
"compare",
"css",
"delay",
"duration",
"projectwallace",
"sort",
"time",
"wallace"
],
"homepage": "https://github.com/projectwallace/css-time-sort",
"license": "MIT",
"author": "Bart Veneman",
"repository": {
"type": "git",
"url": "git+https://github.com/projectwallace/css-time-sort.git"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"scripts": {
"test": "npx c8 --reporter=lcov uvu",
"check": "tsc --noEmit",
"build": "tsdown",
"lint": "oxlint; oxfmt --check"
},
"devDependencies": {
"@codecov/rollup-plugin": "^1.9.1",
"c8": "^11.0.0",
"oxfmt": "^0.45.0",
"oxlint": "^1.51.0",
"publint": "^0.3.18",
"tsdown": "^0.21.1",
"typescript": "^6.0.2",
"uvu": "^0.5.6"
},
"engines": {
"node": ">=18.0.0"
},
"issues": "https://github.com/projectwallace/css-time-sort/issues"
}