From ded59676ece022cbc10452c8aa5a86c8b5a96ccb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Golonko?= Date: Tue, 15 Jul 2014 17:53:13 +0200 Subject: [PATCH] Add bower.json --- .gitignore | 1 + bower.json | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 bower.json diff --git a/.gitignore b/.gitignore index c2658d7..4a688ff 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ node_modules/ +bower_components/ \ No newline at end of file diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..e46d02a --- /dev/null +++ b/bower.json @@ -0,0 +1,32 @@ +{ + "name": "strapdown", + "version": "0.0.0", + "homepage": "http://strapdownjs.com", + "description": "Instant and elegant Markdown documents in the browser", + "main": [ + "src/strapdown.js", + "src/strapdown.css" + ], + "keywords": [ + "markdown", + "strapdown", + "marked", + "jquery" + ], + "authors": [ + "Artur Adib" + ], + "license": "MIT", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ], + "dependencies": { + "jquery": "~2.1.1", + "marked": "~0.3.2", + "prettify": "*" + } +}