|
|
@ -1,19 +1,32 @@ |
|
|
|
{ |
|
|
|
"author": "T. Jameson Little <t.jameson.little@gmail.com>", |
|
|
|
"name": "base64-js", |
|
|
|
"description": "Base64 encoding/decoding in pure JS", |
|
|
|
"version": "1.1.2", |
|
|
|
"description": "Base64 encoding/decoding in pure JS", |
|
|
|
"keywords": [ |
|
|
|
"base64" |
|
|
|
], |
|
|
|
"homepage": "https://github.com/beatgammit/base64-js", |
|
|
|
"bugs": { |
|
|
|
"url": "https://github.com/beatgammit/base64-js/issues" |
|
|
|
}, |
|
|
|
"license": "MIT", |
|
|
|
"author": "T. Jameson Little <t.jameson.little@gmail.com>", |
|
|
|
"files": [ |
|
|
|
"test", |
|
|
|
"index.js", |
|
|
|
"base64js.min.js" |
|
|
|
], |
|
|
|
"main": "index.js", |
|
|
|
"repository": { |
|
|
|
"type": "git", |
|
|
|
"url": "git://github.com/beatgammit/base64-js.git" |
|
|
|
}, |
|
|
|
"main": "index.js", |
|
|
|
"scripts": { |
|
|
|
"build": "browserify -s base64js -r ./ | uglifyjs -m > base64js.min.js", |
|
|
|
"test": "standard && tape test/*.js" |
|
|
|
"lint": "standard", |
|
|
|
"test": "npm run lint && npm run unit", |
|
|
|
"unit": "tape test/*.js" |
|
|
|
}, |
|
|
|
"license": "MIT", |
|
|
|
"dependencies": {}, |
|
|
|
"devDependencies": { |
|
|
|
"benchmark": "^2.1.0", |
|
|
|
"browserify": "^13.0.0", |
|
|
|