From 8b40263fc4d41196d04cbf208f572d88d8a57ea1 Mon Sep 17 00:00:00 2001 From: allenconquest Date: Tue, 12 Jul 2016 16:24:09 +0100 Subject: [PATCH 1/2] bower.json file added to allow bower module management --- bower.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 bower.json diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..c3b56a3 --- /dev/null +++ b/bower.json @@ -0,0 +1,19 @@ +{ + "name": "blob", + "main": "Blob.js", + "version": "1.0.0", + "homepage": "https://github.com/eligrey/Blob.js", + "authors": [ + "Eli Grey " + ], + "description": "Implements the W3C Blob interface in browsers that do not natively support it", + "keywords": [ + "blob" + ], + "license": "MIT", + "ignore": [ + "*", + "!Blob.*js", + "!LICENSE.md" + ] +} From 521cfe02618ce4cc9c3ddf941d3b0723cccddb32 Mon Sep 17 00:00:00 2001 From: allenconquest Date: Tue, 12 Jul 2016 16:43:18 +0100 Subject: [PATCH 2/2] added package.json --- package.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..bdf6cb1 --- /dev/null +++ b/package.json @@ -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 ", + "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" + } +}