Path: blob/master/node_modules/base64-js/package.json
2591 views
{1"name": "base64-js",2"description": "Base64 encoding/decoding in pure JS",3"version": "1.5.1",4"author": "T. Jameson Little <[email protected]>",5"typings": "index.d.ts",6"bugs": {7"url": "https://github.com/beatgammit/base64-js/issues"8},9"devDependencies": {10"babel-minify": "^0.5.1",11"benchmark": "^2.1.4",12"browserify": "^16.3.0",13"standard": "*",14"tape": "4.x"15},16"homepage": "https://github.com/beatgammit/base64-js",17"keywords": [18"base64"19],20"license": "MIT",21"main": "index.js",22"repository": {23"type": "git",24"url": "git://github.com/beatgammit/base64-js.git"25},26"scripts": {27"build": "browserify -s base64js -r ./ | minify > base64js.min.js",28"lint": "standard",29"test": "npm run lint && npm run unit",30"unit": "tape test/*.js"31},32"funding": [33{34"type": "github",35"url": "https://github.com/sponsors/feross"36},37{38"type": "patreon",39"url": "https://www.patreon.com/feross"40},41{42"type": "consulting",43"url": "https://feross.org/support"44}45]46}474849