2015-10-22 18:26:23 +08:00
{
2016-02-25 01:50:07 +08:00
"_args" : [
[
2016-07-23 03:24:27 +08:00
{
"raw" : "base64-js@0.0.8" ,
"scope" : null ,
"escapedName" : "base64-js" ,
"name" : "base64-js" ,
"rawSpec" : "0.0.8" ,
"spec" : "0.0.8" ,
"type" : "version"
} ,
"/Users/steveng/repo/cordova/cordova-android/node_modules/plist"
2016-02-25 01:50:07 +08:00
]
] ,
"_from" : "base64-js@0.0.8" ,
"_id" : "base64-js@0.0.8" ,
"_inCache" : true ,
"_location" : "/base64-js" ,
"_nodeVersion" : "0.10.35" ,
"_npmUser" : {
2016-07-23 03:24:27 +08:00
"name" : "feross" ,
"email" : "feross@feross.org"
2015-10-22 18:26:23 +08:00
} ,
2016-02-25 01:50:07 +08:00
"_npmVersion" : "2.1.16" ,
"_phantomChildren" : { } ,
"_requested" : {
"raw" : "base64-js@0.0.8" ,
"scope" : null ,
2016-07-23 03:24:27 +08:00
"escapedName" : "base64-js" ,
"name" : "base64-js" ,
"rawSpec" : "0.0.8" ,
2016-02-25 01:50:07 +08:00
"spec" : "0.0.8" ,
"type" : "version"
2015-10-22 18:26:23 +08:00
} ,
2016-02-25 01:50:07 +08:00
"_requiredBy" : [
"/plist"
] ,
2017-09-06 02:04:12 +08:00
"_resolved" : "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz" ,
2016-02-25 01:50:07 +08:00
"_shasum" : "1101e9544f4a76b1bc3b26d452ca96d7a35e7978" ,
"_shrinkwrap" : null ,
"_spec" : "base64-js@0.0.8" ,
2016-07-23 03:24:27 +08:00
"_where" : "/Users/steveng/repo/cordova/cordova-android/node_modules/plist" ,
2016-02-25 01:50:07 +08:00
"author" : {
2016-07-23 03:24:27 +08:00
"name" : "T. Jameson Little" ,
"email" : "t.jameson.little@gmail.com"
2015-10-22 18:26:23 +08:00
} ,
2016-02-25 01:50:07 +08:00
"bugs" : {
"url" : "https://github.com/beatgammit/base64-js/issues"
2015-10-22 18:26:23 +08:00
} ,
"dependencies" : { } ,
2016-02-25 01:50:07 +08:00
"description" : "Base64 encoding/decoding in pure JS" ,
2015-10-22 18:26:23 +08:00
"devDependencies" : {
"tape" : "~2.3.2"
} ,
2016-02-25 01:50:07 +08:00
"directories" : { } ,
"dist" : {
"shasum" : "1101e9544f4a76b1bc3b26d452ca96d7a35e7978" ,
2016-05-26 07:31:28 +08:00
"tarball" : "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz"
2015-10-22 18:26:23 +08:00
} ,
2016-02-25 01:50:07 +08:00
"engines" : {
"node" : ">= 0.4"
2016-01-21 07:49:00 +08:00
} ,
2016-02-25 01:50:07 +08:00
"gitHead" : "b4a8a5fa9b0caeddb5ad94dd1108253d8f2a315f" ,
2017-09-06 02:04:12 +08:00
"homepage" : "https://github.com/beatgammit/base64-js#readme" ,
2016-02-25 01:50:07 +08:00
"license" : "MIT" ,
"main" : "lib/b64.js" ,
2016-01-21 07:49:00 +08:00
"maintainers" : [
{
2016-07-23 03:24:27 +08:00
"name" : "beatgammit" ,
"email" : "t.jameson.little@gmail.com"
2016-01-21 07:49:00 +08:00
} ,
{
2016-07-23 03:24:27 +08:00
"name" : "feross" ,
"email" : "feross@feross.org"
2016-01-21 07:49:00 +08:00
}
] ,
2016-02-25 01:50:07 +08:00
"name" : "base64-js" ,
"optionalDependencies" : { } ,
2017-09-06 02:04:12 +08:00
"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 two exposed functions, `toByteArray` and `fromByteArray`, which both take a single argument.\n\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" ,
"readmeFilename" : "README.md" ,
2016-02-25 01:50:07 +08:00
"repository" : {
"type" : "git" ,
"url" : "git://github.com/beatgammit/base64-js.git"
2016-01-21 07:49:00 +08:00
} ,
2016-02-25 01:50:07 +08:00
"scripts" : {
"test" : "tape test/*.js"
} ,
"testling" : {
2016-07-23 03:24:27 +08:00
"files" : "test/*.js" ,
2016-02-25 01:50:07 +08:00
"browsers" : [
2016-04-22 20:56:02 +08:00
"ie/6..latest" ,
2016-02-25 01:50:07 +08:00
"chrome/4..latest" ,
"firefox/3..latest" ,
2016-04-22 20:56:02 +08:00
"safari/5.1..latest" ,
2016-02-25 01:50:07 +08:00
"opera/11.0..latest" ,
2016-04-22 20:56:02 +08:00
"iphone/6" ,
"ipad/6"
2016-07-23 03:24:27 +08:00
]
2016-02-25 01:50:07 +08:00
} ,
"version" : "0.0.8"
2015-10-22 18:26:23 +08:00
}