107 lines
3.6 KiB
JSON
107 lines
3.6 KiB
JSON
{
|
|
"_args": [
|
|
[
|
|
{
|
|
"raw": "base64-js@1.2.0",
|
|
"scope": null,
|
|
"escapedName": "base64-js",
|
|
"name": "base64-js",
|
|
"rawSpec": "1.2.0",
|
|
"spec": "1.2.0",
|
|
"type": "version"
|
|
},
|
|
"/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/plist"
|
|
]
|
|
],
|
|
"_from": "base64-js@1.2.0",
|
|
"_id": "base64-js@1.2.0",
|
|
"_inCache": true,
|
|
"_location": "/base64-js",
|
|
"_nodeVersion": "6.5.0",
|
|
"_npmOperationalInternal": {
|
|
"host": "packages-16-east.internal.npmjs.com",
|
|
"tmp": "tmp/base64-js-1.2.0.tgz_1474574119286_0.4763944323640317"
|
|
},
|
|
"_npmUser": {
|
|
"name": "feross",
|
|
"email": "feross@feross.org"
|
|
},
|
|
"_npmVersion": "3.10.3",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"raw": "base64-js@1.2.0",
|
|
"scope": null,
|
|
"escapedName": "base64-js",
|
|
"name": "base64-js",
|
|
"rawSpec": "1.2.0",
|
|
"spec": "1.2.0",
|
|
"type": "version"
|
|
},
|
|
"_requiredBy": [
|
|
"/plist"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.2.0.tgz",
|
|
"_shasum": "a39992d723584811982be5e290bb6a53d86700f1",
|
|
"_shrinkwrap": null,
|
|
"_spec": "base64-js@1.2.0",
|
|
"_where": "/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/plist",
|
|
"author": {
|
|
"name": "T. Jameson Little",
|
|
"email": "t.jameson.little@gmail.com"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/beatgammit/base64-js/issues"
|
|
},
|
|
"dependencies": {},
|
|
"description": "Base64 encoding/decoding in pure JS",
|
|
"devDependencies": {
|
|
"benchmark": "^2.1.0",
|
|
"browserify": "^13.0.0",
|
|
"standard": "*",
|
|
"tape": "4.x",
|
|
"uglify-js": "^2.6.2"
|
|
},
|
|
"directories": {},
|
|
"dist": {
|
|
"shasum": "a39992d723584811982be5e290bb6a53d86700f1",
|
|
"tarball": "https://registry.npmjs.org/base64-js/-/base64-js-1.2.0.tgz"
|
|
},
|
|
"files": [
|
|
"test",
|
|
"index.js",
|
|
"base64js.min.js"
|
|
],
|
|
"gitHead": "18bb7b2f20af653e60ae186bd879d3c4e6e6d8e6",
|
|
"homepage": "https://github.com/beatgammit/base64-js",
|
|
"keywords": [
|
|
"base64"
|
|
],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"maintainers": [
|
|
{
|
|
"name": "beatgammit",
|
|
"email": "t.jameson.little@gmail.com"
|
|
},
|
|
{
|
|
"name": "feross",
|
|
"email": "feross@feross.org"
|
|
}
|
|
],
|
|
"name": "base64-js",
|
|
"optionalDependencies": {},
|
|
"readme": "base64-js\n=========\n\n`base64-js` does basic base64 encoding/decoding in pure JS.\n\n[![build status](https://secure.travis-ci.org/beatgammit/base64-js.png)](http://travis-ci.org/beatgammit/base64-js)\n\n[![testling badge](https://ci.testling.com/beatgammit/base64-js.png)](https://ci.testling.com/beatgammit/base64-js)\n\nMany browsers already have base64 encoding/decoding functionality, but it is for text data, not all-purpose binary data.\n\nSometimes encoding/decoding binary data in the browser is useful, and that is what this module does.\n\n## install\n\nWith [npm](https://npmjs.org) do:\n\n`npm install base64-js`\n\n## methods\n\n`var base64 = require('base64-js')`\n\n`base64` has three exposed functions, `byteLength`, `toByteArray` and `fromByteArray`, which both take a single argument.\n\n* `byteLength` - Takes a base64 string and returns length of byte array\n* `toByteArray` - Takes a base64 string and returns a byte array\n* `fromByteArray` - Takes a byte array and returns a base64 string\n\n## license\n\nMIT\n",
|
|
"readmeFilename": "README.md",
|
|
"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"
|
|
},
|
|
"version": "1.2.0"
|
|
}
|