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