From dd7886cc6f6b4f852d76a300795e3caca06fb1db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Tue, 12 Jan 2016 23:48:16 +0200 Subject: [PATCH] add composer file this adds support for loading assets via component-installer. --- composer.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..a6dd069 --- /dev/null +++ b/composer.json @@ -0,0 +1,22 @@ +{ + "name": "bgrins/filereader.js", + "description": "A lightweight wrapper for the JavaScript FileReader interface", + "license": "MIT", + "homepage": "http://bgrins.github.io/filereader.js/", + "authors": [ + { + "name": "Brian Grinstead", + "email": "briangrinstead@gmail.com" + } + ], + "support": { + "issues": "https://github.com/bgrins/filereader.js/issues" + }, + "extra": { + "component": { + "scripts": [ + "filereader.js" + ] + } + } +}