From 5cb4b3a8f3ef8f38c267797dcae99cadfe17b61b Mon Sep 17 00:00:00 2001 From: JaredCubilla Date: Thu, 28 Aug 2014 15:57:27 -0400 Subject: [PATCH 1/2] Updated to ignore everything but jsonp --- bower.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bower.json diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..806db1f --- /dev/null +++ b/bower.json @@ -0,0 +1,13 @@ +{ + "name": "jsonproxy", + "description": "Simple HTTP proxy that enables cross-domain requests to any JSON API.", + "keywords": ["json", "jsonp", "proxy", "jquery", "json-api", "http", "cross-domain"], + + "main": "jsonp.js", + "repository": { + "type": "git", + "url": "git://github.com/afeld/jsonp.git" + }, + "ignore": ["**/*", "!jsonp.js", "!bower.json"], + "license": "MIT" +} \ No newline at end of file From 91d8225b8633d2db7c11e93d86f6b368ea789b4a Mon Sep 17 00:00:00 2001 From: JaredCubilla Date: Thu, 28 Aug 2014 16:01:52 -0400 Subject: [PATCH 2/2] added jquery dependency --- bower.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bower.json b/bower.json index 806db1f..e6492b6 100644 --- a/bower.json +++ b/bower.json @@ -9,5 +9,8 @@ "url": "git://github.com/afeld/jsonp.git" }, "ignore": ["**/*", "!jsonp.js", "!bower.json"], + "dependencies": { + "jquery": "~1.9.1" + }, "license": "MIT" } \ No newline at end of file