UNPKG

b64-lite

Version:

isomorphic base64 library in 152 bytes

51 lines (50 loc) 1.43 kB
{ "name": "b64-lite", "amdName": "b64Lite", "version": "1.2.0", "description": "isomorphic base64 library in 152 bytes", "main": "node/b64-lite.js", "module": "node/b64-lite.mjs", "browser": { "./node/b64-lite.js": "./dist/b64-lite.js", "./node/b64-lite.mjs": "./dist/b64-lite.mjs" }, "scripts": { "pretest": "npm run build", "test": "npm run test:node && npm run test:browser", "test:node": "node test/node.js", "test:browser": "karma start karma.conf.js --single-run", "build": "microbundle --entry browser.js --output dist && microbundle --entry node.js --output node --compress false", "release": "npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish" }, "files": [ "dist", "node" ], "repository": { "type": "git", "url": "git+https://github.com/kevlened/b64-lite.git" }, "keywords": [ "b64", "isomorphic", "small", "atob", "btoa" ], "license": "MIT", "bugs": { "url": "https://github.com/kevlened/b64-lite/issues" }, "homepage": "https://github.com/kevlened/b64-lite#readme", "devDependencies": { "jasmine": "^2.8.0", "jasmine-core": "^2.8.0", "karma": "^1.7.1", "karma-chrome-launcher": "^2.2.0", "karma-jasmine": "^1.1.1", "karma-webpack": "^2.0.6", "microbundle": "^0.2.4", "webpack": "^3.10.0" } }