-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 934 Bytes
/
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": "terrible-bytes",
"version": "0.1.1",
"description": "Convey byte size information in a human friendly format. e.g: b`42 MB`",
"main": "src/index.js",
"scripts": {
"prepare": "npm version patch -m 'Tag v%s [skip ci]'",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rmnull/terrible-bytes.git"
},
"keywords": [
"byte",
"bytes",
"pretty",
"human-readable",
"human",
"readable",
"iec",
"si",
"size",
"filesize"
],
"author": "rmnull",
"license": "MIT",
"bugs": {
"url": "https://github.com/rmnull/terrible-bytes/issues"
},
"homepage": "https://github.com/rmnull/terrible-bytes#readme",
"devDependencies": {
"jest": "^27.5.1"
},
"type": "module",
"jest": {
"bail": 1,
"verbose": true,
"transform": {}
},
"files": [
"src/**/*.js"
]
}