From 8fb86108e69d5cd87b5041d5ee69348455876953 Mon Sep 17 00:00:00 2001 From: Gilles Doge Date: Tue, 20 May 2014 18:10:37 +0200 Subject: [PATCH 1/2] Added Bower file --- bower.json | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 bower.json diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..4ad026f --- /dev/null +++ b/bower.json @@ -0,0 +1,34 @@ +{ + "name": "TimelineJS", + "version": "2.32.0", + "homepage": "http://timeline.knightlab.com", + "authors": [ + "Zach Wise ", + "NUKnightLab" + ], + "description": "A Storytelling Timeline built in JavaScript.", + "main": [ + "build/js/timeline-min.js", + "build/css/timeline.css", + "build/embed/index.html", + "build/js/storyjs-embed.js", + "build/js/storyjs-embed-generator.js", + "build/js/storyjs-embed-cdn.js" + ], + "keywords": [ + "timeline", + "storytelling", + "timelinejs", + "timeline.js", + "history", + "googledocs", + "storify" + ], + "license": "MPL v2.0", + "ignore": [ + "**/.*", + "exemples", + "tests", + "website" + ] +} From 3af521fcde3c39490c0a3060811adee22133aa32 Mon Sep 17 00:00:00 2001 From: Joe Germuska Date: Tue, 20 May 2014 22:09:45 -0500 Subject: [PATCH 2/2] minor tweaks fix typo s/exemples/examples change timeline-min.js to timeline.js in compliance with Bower JSON spec ["do not include minified files"](https://github.com/bower/bower.json-spec#main) --- bower.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bower.json b/bower.json index 4ad026f..1c07848 100644 --- a/bower.json +++ b/bower.json @@ -8,7 +8,7 @@ ], "description": "A Storytelling Timeline built in JavaScript.", "main": [ - "build/js/timeline-min.js", + "build/js/timeline.js", "build/css/timeline.css", "build/embed/index.html", "build/js/storyjs-embed.js", @@ -27,7 +27,7 @@ "license": "MPL v2.0", "ignore": [ "**/.*", - "exemples", + "examples", "tests", "website" ]