From 9210407ba41a357ba8f54348b76f92591c781585 Mon Sep 17 00:00:00 2001 From: Evan Hahn Date: Sun, 1 Sep 2013 11:55:52 -0400 Subject: [PATCH] Add Bower support If this is merged into `master`, it'll need to be tagged as version 4.7.0 so that Bower will work. git tag -a v4.7.0 --- .gitignore | 1 + bower.json | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 bower.json diff --git a/.gitignore b/.gitignore index 42a958f6..111fb4af 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ dist tests/js/unitTests.js analysis node_modules +bower_components phantomjs.exe # Numerous always-ignore extensions diff --git a/bower.json b/bower.json new file mode 100644 index 00000000..6ca6462a --- /dev/null +++ b/bower.json @@ -0,0 +1,21 @@ +{ + "name": "KineticJS", + "version": "4.7.0", + "homepage": "http://kineticjs.com/", + "authors": [ + "Eric Rowell" + ], + "description": "KineticJS is an HTML5 Canvas JavaScript framework that enables high performance animations, transitions, node nesting, layering, filtering, caching, event handling for desktop and mobile applications, and much more.", + "keywords": [ + "canvas", + "animations" + ], + "license": "MIT", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ] +}