CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
package.json43 linesDownload Raw Back to bytes
1{2  "name": "bytes",3  "description": "Utility to parse a string bytes to bytes and vice-versa",4  "version": "3.1.2",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": "7.32.0",23    "eslint-plugin-markdown": "2.2.1",24    "mocha": "9.2.0",25    "nyc": "15.1.0"26  },27  "files": [28    "History.md",29    "LICENSE",30    "Readme.md",31    "index.js"32  ],33  "engines": {34    "node": ">= 0.8"35  },36  "scripts": {37    "lint": "eslint .",38    "test": "mocha --check-leaks --reporter spec",39    "test-ci": "nyc --reporter=lcov --reporter=text npm test",40    "test-cov": "nyc --reporter=html --reporter=text npm test"41  }42}43