uint8-to-base64
Version:
A safe Uint8Array to base64 string converter
49 lines (48 loc) • 1.41 kB
JSON
{
"name": "uint8-to-base64",
"version": "0.2.1",
"description": "A safe Uint8Array to base64 string converter",
"main": "cjs/index.js",
"scripts": {
"build": "npm run cjs && npm run rollup:new && npm run rollup:babel && npm run min && npm run test",
"cjs": "ascjs esm cjs",
"rollup:new": "rollup --config rollup/new.config.js",
"rollup:babel": "rollup --config rollup/babel.config.js",
"min": "uglifyjs index.js -c -m -o min.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"test": "nyc node test/index.js"
},
"keywords": [
"Uint8Array",
"base64",
"conversion",
"safe",
"encode",
"decode"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"ascjs": "^3.1.2",
"coveralls": "^3.0.9",
"nyc": "^15.0.0",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.2.0",
"uglify-js": "^3.7.7"
},
"module": "esm/index.js",
"unpkg": "min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/uint8-to-base64.git"
},
"bugs": {
"url": "https://github.com/WebReflection/uint8-to-base64/issues"
},
"homepage": "https://github.com/WebReflection/uint8-to-base64#readme",
"types": "index.d.ts"
}