Added bower.json

master 0.0.1
Qvazar 2015-09-14 14:54:35 +02:00
rodzic 909a68a671
commit e5de53a999
2 zmienionych plików z 33 dodań i 1 usunięć

Wyświetl plik

@ -29,7 +29,7 @@ The extraction is done in a [Web Worker](https://developer.mozilla.org/en-US/doc
.then(function(extractedFiles) {
...
});
// or
untar(sourceBuffer).then(
function(extractedFiles) { // onSuccess
...

32
bower.json 100644
Wyświetl plik

@ -0,0 +1,32 @@
{
"name": "js-untar",
"homepage": "https://github.com/Qvazar/js-untar",
"authors": [
"Sebastian Joergensen <sebjorg@gmail.com>"
],
"description": "untar files in the browser",
"main": [
"build/dist/untar.js"
],
"moduleType": [
"amd",
"globals",
"node"
],
"keywords": [
"tar",
"untar"
],
"license": "GPL-3.0",
"ignore": [
"build/dev",
"node_modules",
"bower_components",
"spec",
"src",
"gulp*.*",
"karma.*.*",
"package.json",
"test-*.*"
]
}