-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "@tsmx/human-readable",
"version": "2.0.3",
"description": "Easily create human-readable strings from byte sizes, e.g. 17238 --> 17.24 kB. Supports decimal (MB,GB,..) and binary (MiB, GiB,..) units as well as user-defined conversion from/to other sizes.",
"main": "human-readable.js",
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"test": "jest",
"test-coverage": "jest --coverage",
"test-ts": "npx tsd"
},
"types": "human-readable.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/tsmx/human-readable.git"
},
"homepage": "https://tsmx.net/human-readable/",
"author": "tsmx <[email protected]>",
"keywords": [
"human-readable",
"bytes",
"filesize",
"SI",
"IEC",
"conversion",
"decimal",
"binary",
"pretty-print"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.8.0",
"eslint": "^9.8.0",
"eslint-plugin-jest": "^28.7.0",
"jest": "^29.5.0",
"tsd": "^0.28.0"
},
"tsd": {
"directory": "test"
}
}