From c6b5b02d3b180b42ef61229082e29137c43e73a0 Mon Sep 17 00:00:00 2001 From: Alex LaFroscia Date: Tue, 20 Jan 2015 20:52:33 -0500 Subject: [PATCH] Add `bower.json` Adds the `bower.json` file that is required by Bower to host a package through their service. Now that this is made, I'll be uploading it to bower. --- 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 00000000..4664f868 --- /dev/null +++ b/bower.json @@ -0,0 +1,34 @@ +{ + "name": "gun", + "main": "gun.js", + "version": "0.0.9d", + "homepage": "http://gundb.io", + "authors": [ + { "name": "Mark Nadal", "email": "mark@accelsor.com" }, + { "name": "AJ ONeal", "email": "awesome@coolaj86.com" }, + { "name": "Alex LaFroscia", "email": "alex@lafroscia.com" } + ], + "repository": { + "type": "git", + "url": "https://github.com/amark/gun" + }, + "description": "A distributed, embedded, graph database engine.", + "moduleType": [ + "globals" + ], + "keywords": [ + "graph", + "database", + "gun", + "gundb", + "nodb" + ], + "license": "MIT", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ] +}