Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "blob",
"main": "Blob.js",
"version": "1.0.0",
"homepage": "https://github.com/eligrey/Blob.js",
"authors": [
"Eli Grey <me@eligrey.com>"
],
"description": "Implements the W3C Blob interface in browsers that do not natively support it",
"keywords": [
"blob"
],
"license": "MIT",
"ignore": [
"*",
"!Blob.*js",
"!LICENSE.md"
]
}
27 changes: 27 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@

{
"name": "blob",
"version": "1.0.0",
"description": "Implements the W3C Blob interface in browsers that do not natively support it",
"main": "Blob.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"build": "node_modules/.bin/uglifyjs Blob.js --mangle --comments /@source/ > Blob.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/eligrey/Blob.js"
},
"keywords": [
"blob"
],
"author": "Eli Grey <me@eligrey.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eligrey/Blob.js/issues"
},
"homepage": "https://github.com/eligrey/Blob.js#readme",
"devDependencies": {
"uglify-js": "^2.6.2"
}
}