1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| {
| "name": "js-base64",
| "version": "3.7.3",
| "description": "Yet another Base64 transcoder in pure-JS",
| "main": "base64.js",
| "module": "base64.mjs",
| "types": "base64.d.ts",
| "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"
| }
|
|