base94max
Version:
JavaScript implementation of the Base94Max encoding scheme (adaptive 13/14-bit) for encoding and decoding binary data.
50 lines (49 loc) • 1.09 kB
JSON
{
"name": "base94max",
"version": "0.2.0",
"description": "JavaScript implementation of the Base94Max encoding scheme (adaptive 13/14-bit) for encoding and decoding binary data.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "mocha"
},
"bin": {
"base94" : "bin/base94.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keywan-ghadami/base94max.git"
},
"keywords": [
"base94",
"base94max",
"encoding",
"decoding",
"binary",
"text",
"adaptive",
"encoder",
"decoder"
],
"author": "Keywan Ghadami <keywan.ghadami@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/keywan-ghadami/base94max/issues"
},
"files": [
"index.js",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/keywan-ghadami/base94max#readme",
"devDependencies": {
"@eslint/js": "^9.25.1",
"eslint": "^9.25.1",
"globals": "^16.0.0",
"mocha": "^10.0.0",
"random-bytes-seed": "^2.0.0"
},
"dependencies": {
"yargs": "^17.7.2"
}
}