Skip to content
Open
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
28 changes: 28 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "blob",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You need to avoid using blob as the project name, it already exists at https://www.npmjs.com/package/blob .

"version": "1.0.0",
"description": "Blob.js 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": [
"filesaver",
"saveas",
"blob"
],
"author": "Eli Grey <[email protected]>",
"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"
}
}