Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

Commit

Permalink
run node v0.12 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
flosse committed Apr 15, 2015
1 parent 06a3b4d commit ff6a1d0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
1 change: 1 addition & 0 deletions .travis.yml
@@ -1,5 +1,6 @@
language: node_js
node_js:
- '0.10'
- '0.12'
before_install:
- sudo apt-get install libicu-dev
24 changes: 12 additions & 12 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "node-xmpp-joap",
"version": "0.0.17",
"version": "0.0.18",
"main": "./lib/node-xmpp-joap",
"description": "Jabber Object Access Protocol (XEP-0075) library for node-xmpp",
"author": "Markus Kohlhase",
Expand All @@ -14,20 +14,20 @@
"homepage": "http://github.com/flosse/node-xmpp-joap",
"bugs": "http://github.com/flosse/node-xmpp-joap/issues",
"dependencies": {
"node-expat": "~2.3.1",
"node-xmpp": "~0.15.0",
"node-stringprep": "~0.6.0",
"ltx": "~0.6.0",
"async": "~0.9.0",
"toobusy": "~0.2.4",
"node-uuid": "~1.4.1"
"ltx": "~0.9.0",
"node-expat": "~2.3.7",
"node-stringprep": "~0.7.0",
"node-uuid": "~1.4.3",
"node-xmpp": "~1.0.0-alpha2",
"toobusy-js": "^0.4.1"
},
"devDependencies": {
"coffee-script": "~1.8.0",
"chai": "~1.9.1",
"mocha": "~1.21.4",
"sinon-chai": "~2.5.0",
"sinon": "~1.10.3"
"coffee-script": "~1.9.2",
"chai": "~2.2.0",
"mocha": "~2.2.4",
"sinon-chai": "~2.7.0",
"sinon": "~1.14.1"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions src/Router.coffee
@@ -1,13 +1,13 @@
###
This program is distributed under the terms of the MIT license.
Copyright 2012 - 2014 (c) Markus Kohlhase <mail@markus-kohlhase.de>
Copyright 2012 - 2015 (c) Markus Kohlhase <mail@markus-kohlhase.de>
###

ltx = require "ltx"
events = require "events"
JID = require("node-xmpp").JID
joap = require "./node-xmpp-joap"
toobusy = require "toobusy"
toobusy = require "toobusy-js"

class Router extends events.EventEmitter

Expand Down

0 comments on commit ff6a1d0

Please sign in to comment.