You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
885 B

13 years ago
{
"name": "base64-js",
8 years ago
"version": "1.2.0",
"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"
},
"scripts": {
"build": "browserify -s base64js -r ./ | uglifyjs -m > base64js.min.js",
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "tape test/*.js"
},
"devDependencies": {
"benchmark": "^2.1.0",
8 years ago
"browserify": "^14.0.0",
8 years ago
"standard": "*",
"tape": "4.x",
"uglify-js": "^2.6.2"
}
13 years ago
}