Spaces:
Build error
Build error
File size: 987 Bytes
c211499 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
{
"name": "base-64",
"version": "0.1.0",
"description": "A robust base64 encoder/decoder that is fully compatible with `atob()` and `btoa()`, written in JavaScript.",
"homepage": "http://mths.be/base64",
"main": "base64.js",
"keywords": [
"codec",
"decoder",
"encoder",
"base64",
"atob",
"btoa"
],
"licenses": [
{
"type": "MIT",
"url": "http://mths.be/mit"
}
],
"author": {
"name": "Mathias Bynens",
"url": "http://mathiasbynens.be/"
},
"repository": {
"type": "git",
"url": "https://github.com/mathiasbynens/base64.git"
},
"bugs": {
"url": "https://github.com/mathiasbynens/base64/issues"
},
"files": [
"LICENSE-MIT.txt",
"base64.js"
],
"directories": {
"test": "tests"
},
"scripts": {
"test": "node tests/tests.js"
},
"devDependencies": {
"grunt": "~0.4.4",
"grunt-shell": "~0.7.0",
"grunt-template": "~0.2.3",
"istanbul": "~0.2.7",
"qunit-extras": "~1.1.0",
"qunitjs": "~1.11.0",
"requirejs": "~2.1.11"
}
}
|