-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
92 lines (92 loc) · 1.91 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
{
"name": "enhanced-ms",
"version": "3.0.0",
"license": "MIT",
"description": "Convert human readable time-frame strings to milliseconds and vice versa, with support for i10n and operators!",
"homepage": "https://github.com/apteryxxyz/enhanced-ms#readme",
"author": {
"name": "ApteryxXYZ",
"url": "https://apteryx.xyz"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist"],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": {
"import": "./package.json",
"require": "./package.json"
}
},
"scripts": {
"lint": "biome lint .",
"format": "biome format --write .",
"build": "tsup",
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/apteryxxyz/enhanced-ms"
},
"bugs": {
"url": "https://github.com/apteryxxyz/enhanced-ms/issues"
},
"keywords": [
"convert",
"duration",
"human",
"humanise",
"humanize",
"microseconds",
"milliseconds",
"ms",
"number",
"parse",
"period",
"pretty",
"print",
"range",
"readable",
"seconds",
"string",
"time"
],
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"commitlint": {
"extends": ["@commitlint/config-conventional"],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"types"
]
]
}
}
}