You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
807 B
38 lines
807 B
{
|
|
"name": "js-base64",
|
|
"version": "3.7.5",
|
|
"description": "Yet another Base64 transcoder in pure-JS",
|
|
"main": "base64.js",
|
|
"module": "base64.mjs",
|
|
"types": "base64.d.ts",
|
|
"sideEffects": false,
|
|
"files": [
|
|
"base64.js",
|
|
"base64.mjs",
|
|
"base64.d.ts"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./base64.d.ts",
|
|
"import": "./base64.mjs",
|
|
"require": "./base64.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"scripts": {
|
|
"test": "make clean && make test"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^14.0.26",
|
|
"esm": "^3.2.25",
|
|
"mocha": "^8.4.0",
|
|
"typescript": "^3.9.7"
|
|
},
|
|
"repository": "git+https://github.com/dankogai/js-base64.git",
|
|
"keywords": [
|
|
"base64",
|
|
"binary"
|
|
],
|
|
"author": "Dan Kogai",
|
|
"license": "BSD-3-Clause"
|
|
}
|
|
|