From cb8e076073d44a994e29dd653a02c95af2036ad5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jimmy=20W=C3=A4rting?= Date: Wed, 25 May 2016 23:04:22 +0200 Subject: [PATCH] Added npm and bower son --- bower.json | 21 +++++++++++++++++++++ package.json | 24 ++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 bower.json create mode 100644 package.json diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..9d1154e --- /dev/null +++ b/bower.json @@ -0,0 +1,21 @@ +{ + "name": "file-saver", + "main": "FileSaver.js", + "version": "1.2.0", + "homepage": "https://github.com/eligrey/FileSaver.js", + "authors": [ + "Eli Grey " + ], + "description": "An HTML5 saveAs() FileSaver implementation", + "keywords": [ + "filesaver", + "saveas", + "blob" + ], + "license": "MIT", + "ignore": [ + "*", + "!FileSaver.js", + "!LICENSE.md" + ] +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..7c10a28 --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "file-saver", + "version": "1.2.0", + "description": "An HTML5 saveAs() FileSaver implementation", + "main": "FileSaver.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 0" + }, + "repository": { + "type": "git", + "url": "https://github.com/eligrey/FileSaver.js" + }, + "keywords": [ + "filesaver", + "saveas", + "blob" + ], + "author": "Eli Grey ", + "license": "MIT", + "bugs": { + "url": "https://github.com/eligrey/FileSaver.js/issues" + }, + "homepage": "https://github.com/eligrey/FileSaver.js#readme" +}