1
|
{
|
2
|
"name": "bytes",
|
3
|
"description": "Utility to parse a string bytes to bytes and vice-versa",
|
4
|
"version": "3.1.0",
|
5
|
"author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)",
|
6
|
"contributors": [
|
7
|
"Jed Watson <jed.watson@me.com>",
|
8
|
"Théo FIDRY <theo.fidry@gmail.com>"
|
9
|
],
|
10
|
"license": "MIT",
|
11
|
"keywords": [
|
12
|
"byte",
|
13
|
"bytes",
|
14
|
"utility",
|
15
|
"parse",
|
16
|
"parser",
|
17
|
"convert",
|
18
|
"converter"
|
19
|
],
|
20
|
"repository": "visionmedia/bytes.js",
|
21
|
"devDependencies": {
|
22
|
"eslint": "5.12.1",
|
23
|
"mocha": "5.2.0",
|
24
|
"nyc": "13.1.0"
|
25
|
},
|
26
|
"files": [
|
27
|
"History.md",
|
28
|
"LICENSE",
|
29
|
"Readme.md",
|
30
|
"index.js"
|
31
|
],
|
32
|
"engines": {
|
33
|
"node": ">= 0.8"
|
34
|
},
|
35
|
"scripts": {
|
36
|
"lint": "eslint .",
|
37
|
"test": "mocha --check-leaks --reporter spec",
|
38
|
"test-ci": "nyc --reporter=text npm test",
|
39
|
"test-cov": "nyc --reporter=html --reporter=text npm test"
|
40
|
}
|
41
|
}
|