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

Commit

Permalink
Merge pull request #339 from skybus-io/feature/iojsv3
Browse files Browse the repository at this point in the history
Feature/iojsv3
  • Loading branch information
mcollina committed Sep 1, 2015
2 parents eb5442e + 0e20ecb commit c002042
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 13 deletions.
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,25 @@
language: node_js
# currently needed for some native builds on iojs 3
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
node_js:
- 0.10
- 0.12
- iojs-v1
- iojs-v2
- iojs-v3
services:
- redis-server
- mongodb
script:
- npm run coverage
# currently needed for some native builds on iojs 3
before_install:
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
- g++ -v
after_success:
- npm run publish-coverage
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ Mosca   [![Build Status](https://travis-ci.org/mcollina/mosca.png

## Features

* MQTT 3.1 compliant.
* MQTT 3.1 and 3.1.1 compliant.
* QoS 0 and QoS 1.
* Various storage options for QoS 1 offline packets, and subscriptions.
* As fast as it is possible.
* Usable inside ANY other Node.js app.
* Supports Node.js v0.10 and v0.12.
* Supports io.js v1.x and v2.x
* Supports io.js v1.x and v2.x and v3.x (please do not use v3.1.0)

##Quickstart

Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,23 +45,23 @@
"author": "Matteo Collina <hello@matteocollina.com>",
"license": "MIT",
"devDependencies": {
"async_bench": "~0.5.0",
"async_bench": "~0.5.1",
"chai": "^1.10.0",
"coveralls": "~2.11.1",
"dox-foundation": "~0.5.4",
"istanbul": "~0.3.0",
"jshint": "~2.5.2",
"microtime": "~1.4.2",
"microtime": "~2.0.0",
"mocha": "^2.0.1",
"mongo-clean": "^0.1.0",
"osenv": "^0.1.0",
"pre-commit": "0.0.9",
"rimraf": "^2.2.8",
"sinon": "~1.7.0",
"sinon-chai": "~2.6.0",
"supertest": "~0.15.0",
"supertest": "~1.0.1",
"tmp": "0.0.24",
"browserify": "~8.1.1",
"browserify": "~11.0.1",
"uglify-js": "^2.4.16",
"underscore": "^1.7.0"
},
Expand All @@ -76,13 +76,13 @@
"json-buffer": "~2.0.7",
"jsonschema": "^1.0.0",
"level-sublevel": "^6.4.6",
"levelup": "^0.19.0",
"levelup": "^1.2.1",
"lru-cache": "~2.5.0",
"memdown": "~0.10.2",
"minimatch": "~1.0.0",
"moment": "~2.8.0",
"moving-average": "0.0.5",
"mqtt": "^1.0.0",
"mqtt": "^1.3.5",
"mqtt-connection": "^2.1.1",
"msgpack5": "^1.3.0",
"pbkdf2-password": "^1.0.0",
Expand All @@ -91,15 +91,15 @@
"shortid": "^2.1.3",
"st": "~0.5.1",
"uuid": "^2.0.1",
"websocket-stream": "^1.3.2"
"websocket-stream": "~2.0.2"
},
"optionalDependencies": {
"leveldown": "~0.10.0",
"nan": "~1.8.4",
"zmq": "~2.11.0",
"leveldown": "~1.4.1",
"nan": "~2.0.5",
"zmq": "~2.12.0",
"amqp": "~0.2.4",
"redis": "~0.12.1",
"hiredis": "^0.4.0",
"hiredis": "^0.4.1",
"mongodb": "~2.0.33"
}
}

0 comments on commit c002042

Please sign in to comment.