From 3d356b1af55b43e00d5afb12fd3daf3d7061719d Mon Sep 17 00:00:00 2001 From: eudaimos Date: Sat, 19 Apr 2014 02:15:09 -0700 Subject: [PATCH] Added bower.json Tested install locally including running with generator-angular-fullstack so the file is added to bower_components in index.html and it works. Did not publish to bower registry. To test local install: 1. Clone repo to local 2. `npm install` to get Grunt for build 3. `grunt build` to generate `build` folder with both full and minified files 4. Navigate to folder with desired project 5. run `bower install ng-socket-io ~/path/to/ng-socket-io/location/bower.json` --- bower.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 bower.json diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..953c527 --- /dev/null +++ b/bower.json @@ -0,0 +1,37 @@ +{ + "name": "ng-socket-io", + "version": "0.2.0", + "homepage": "https://github.com/mbenford/ngSocketIO", + "authors": [ + "mbenford " + ], + "description": "Socket.IO module for AngularJS", + "main": "build", + "moduleType": [ + "globals" + ], + "keywords": [ + "angular", + "angularjs", + "socket.io", + "websockets" + ], + "license": "MIT", + "private": true, + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "src", + "Gruntfile.js", + "package.json" + ], + "dependencies": { + "angular": ">=1.0.5" + }, + "devDependencies": { + "angular-mocks": ">=1.2.0" + }, + "testPath": "test" +}