Skip to content

Commit

Permalink
cleaned up README and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ekryski committed Jan 22, 2013
2 parents 7d7bd1b + 1b54dd9 commit 4692e58
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -15,7 +15,7 @@ You need to include a few client side libraries in your html file. They are:
<script type="text/javascript" src="socket.io-0.9.10.min.js"></script>
<script type="text/javascript" src="caress-0.1.0.js"></script>

Then just add and start binding regular touch events at will:
Then just add the code below and start binding regular touch events at will:

<script>
$(function() {
Expand Down Expand Up @@ -72,4 +72,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 changes: 14 additions & 10 deletions package.json
@@ -1,19 +1,23 @@
{
"name": "caress-client",
"description": "caress-client is a JavaScript library that converts TUIO events to W3C compliant browser touch events",
"version": "0.1.0",
"version": "0.1.1",
"homepage": "https://github.com/ekryski/caress-client",
"author": {
"name": "Eric Kryski",
"email": "e.kryski@gmail.com"
},
"contributors": [{
"name": "David Lueke"
}],
"licenses": [{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}],
"contributors": [
{
"name": "David Lueke"
}
],
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ekryski/caress-client.git"
Expand All @@ -24,7 +28,7 @@
"dependencies": {
"express": ">=3.0",
"socket.io": ">=0.8",
"caress-server": "git+ssh://git@github.com:ekryski/caress-server.git"
"caress-server": ">=0.1.1"
},
"devDependencies": {
"grunt": "*",
Expand All @@ -43,4 +47,4 @@
"start": "node server.js",
"test": "grunt test"
}
}
}

0 comments on commit 4692e58

Please sign in to comment.