GT2/GT2-iOS/node_modules/Base64/package.json

86 lines
2.9 KiB
JSON

{
"_args": [
[
{
"raw": "Base64@~0.1.3",
"scope": null,
"escapedName": "Base64",
"name": "Base64",
"rawSpec": "~0.1.3",
"spec": ">=0.1.3 <0.2.0",
"type": "range"
},
"/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/auth0-js"
]
],
"_from": "Base64@>=0.1.3 <0.2.0",
"_id": "Base64@0.1.4",
"_inCache": true,
"_location": "/Base64",
"_npmUser": {
"name": "davidchambers",
"email": "dc@hashify.me"
},
"_npmVersion": "1.3.11",
"_phantomChildren": {},
"_requested": {
"raw": "Base64@~0.1.3",
"scope": null,
"escapedName": "Base64",
"name": "Base64",
"rawSpec": "~0.1.3",
"spec": ">=0.1.3 <0.2.0",
"type": "range"
},
"_requiredBy": [
"/auth0-js"
],
"_resolved": "https://registry.npmjs.org/Base64/-/Base64-0.1.4.tgz",
"_shasum": "e9f6c6bef567fd635ea4162ab14dd329e74aa6de",
"_shrinkwrap": null,
"_spec": "Base64@~0.1.3",
"_where": "/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/auth0-js",
"author": {
"name": "David Chambers",
"email": "dc@davidchambers.me"
},
"bugs": {
"url": "https://github.com/davidchambers/Base64.js/issues"
},
"dependencies": {},
"description": "Base64 encoding and decoding",
"devDependencies": {
"coffee-script": "1.4.x",
"mocha": "1.8.x",
"uglify-js": "2.2.x"
},
"directories": {},
"dist": {
"shasum": "e9f6c6bef567fd635ea4162ab14dd329e74aa6de",
"tarball": "https://registry.npmjs.org/Base64/-/Base64-0.1.4.tgz"
},
"homepage": "https://github.com/davidchambers/Base64.js#readme",
"licenses": [
{
"type": "WTFPL",
"url": "https://raw.github.com/davidchambers/Base64.js/master/LICENSE"
}
],
"main": "./base64.js",
"maintainers": [
{
"name": "davidchambers",
"email": "dc@hashify.me"
}
],
"name": "Base64",
"optionalDependencies": {},
"readme": "# Base64.js\n\n< 500 byte* polyfill for browsers which don't provide [`window.btoa`][1] and\n[`window.atob`][2].\n\nAlthough the script does no harm in browsers which do provide these functions,\na conditional script loader such as [yepnope][3] can prevent unnecessary HTTP\nrequests.\n\n```javascript\nyepnope({\n test: window.btoa && window.atob,\n nope: 'base64.js',\n callback: function () {\n // `btoa` and `atob` are now safe to use\n }\n})\n```\n\nBase64.js stems from a [gist][4] by [yahiko][5].\n\n### Running the test suite\n\n make setup\n make test\n\n\\* Minified and gzipped. Run `make bytes` to verify.\n\n\n[1]: https://developer.mozilla.org/en/DOM/window.btoa\n[2]: https://developer.mozilla.org/en/DOM/window.atob\n[3]: http://yepnopejs.com/\n[4]: https://gist.github.com/229984\n[5]: https://github.com/yahiko\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/davidchambers/Base64.js.git"
},
"version": "0.1.4"
}