7fife-backend/node_modules/bytes/package.json

43 lines
959 B
JSON
Raw Normal View History

2024-03-07 13:01:44 +00:00
{
2024-03-11 12:29:54 +00:00
"name": "bytes",
"description": "Utility to parse a string bytes to bytes and vice-versa",
"version": "3.1.2",
"author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)",
2024-03-07 13:01:44 +00:00
"contributors": [
2024-03-11 12:29:54 +00:00
"Jed Watson <jed.watson@me.com>",
"Théo FIDRY <theo.fidry@gmail.com>"
2024-03-07 13:01:44 +00:00
],
2024-03-11 12:29:54 +00:00
"license": "MIT",
"keywords": [
"byte",
"bytes",
"utility",
"parse",
"parser",
"convert",
"converter"
],
"repository": "visionmedia/bytes.js",
2024-03-07 13:01:44 +00:00
"devDependencies": {
"eslint": "7.32.0",
"eslint-plugin-markdown": "2.2.1",
"mocha": "9.2.0",
"nyc": "15.1.0"
},
"files": [
"History.md",
"LICENSE",
"Readme.md",
"index.js"
],
2024-03-11 12:29:54 +00:00
"engines": {
"node": ">= 0.8"
2024-03-07 13:01:44 +00:00
},
"scripts": {
"lint": "eslint .",
"test": "mocha --check-leaks --reporter spec",
"test-ci": "nyc --reporter=lcov --reporter=text npm test",
"test-cov": "nyc --reporter=html --reporter=text npm test"
2024-03-11 12:29:54 +00:00
}
2024-03-07 13:01:44 +00:00
}