Skip to content

Commit

Permalink
v1.0.0 Initial Release
Browse files Browse the repository at this point in the history
  • Loading branch information
royvandewater committed Oct 19, 2017
1 parent 2f4e588 commit c771563
Show file tree
Hide file tree
Showing 4 changed files with 1,899 additions and 34 deletions.
15 changes: 10 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
language: node_js
node_js:
- "6"
- "4"
- "0.12"
- "0.10"
node_js: '8'
before_deploy: yarn run browserify
deploy:
provider: npm
email: [email protected]
api_key:
secure: g49a3l0vkvyhMATuLUpBgHVP5McISUrwsOkKqHtiOxzK86hxuNzn2VDxABoctLkWSAednVMaum/N2BKJ3t8Su1hDdTZ8AJuC11+1aygWmDfULI5QVtEayMmOQt/oytoz5Z139Bq5wL9MvCTkh1F67cHjpc8sil8kiINygkl7W60jef++IOagrz2rHtiejgIme8wx4dqwZQHpGt+cOx8Prwk8m4toW6db5xT+ICcyUcqyHDrjR/Dr3nw8DKhb+2TMMcSWRjm75Fi9hkk3TxU0D8lAuDoH8MnSHV5M156a/zo5Gz2K7h26LQYke1slCy/+h24Ktd/8zvSoQRLdxx31MxHNrzdWw/vmpiABLIN5WXlIAEcEXJlp44+eoYD3j1Os1ACmH9oSRNJBmLtBiq0hEvbd5sD1rpVsJisrm7U48zXAgnXVEAcTcubfnNjwOEWhooM6PufS0c6k8QlaKq/ji2gJJRP2zyXKP7cxJR8ugnyf1aFARlIZMmICROZICGzPUp4ve9XUsZRYp7yPWhHsOdaSxj8ER95z3tH6CHDsyKuYqbBvSgbjpY0xVtxgsYfpO7JeCID0lABzchrQ4oojG6heyfPB4p2n/8mwlVYjcd12DMK6wfaYSfP9GwifXu6GK4UkUaPY69zPV5mPdGXdVHJvnVCHF2t/eeKVu/qKzRs=
on:
tags: true
repo: octoblu/rhea
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
[![Build Status](https://travis-ci.org/grs/rhea.svg?branch=master)](https://travis-ci.org/grs/rhea)
[![Build Status](https://travis-ci.org/octoblu/rhea.svg?branch=master)](https://travis-ci.org/octoblu/rhea)

# rhea

A reactive library for the [AMQP](http://amqp.org/) protocol, for easy
development of both clients and servers.

Forked from [grs/rhea](https://github.com/grs/rhea)

* [Hello World!](#hello-world)
* [API](#api)

Expand Down
59 changes: 31 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,33 @@
{
"name" : "rhea",
"version": "0.2.5",
"description": "reactive AMQP 1.0 library",
"homepage": "http://github.com/grs/rhea",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "http://github.com/grs/rhea"
},
"dependencies": {
"debug": ">=0.8.0"
},
"devDependencies": {
"eslint":"",
"mocha":"^3.0.0",
"browserify":"",
"istanbul": "",
"minimist":""
},
"scripts": {
"lint": "eslint lib/*.js",
"test": "mocha",
"coverage": "istanbul cover _mocha",
"browserify": "browserify -r .:rhea -o rhea.js",
"run-examples": "mocha examples/test_examples.js"
},
"keywords": ["amqp","messaging"],
"main" : "./lib/container.js"
"name": "@octoblu/rhea",
"version": "1.0.0",
"description": "reactive AMQP 1.0 library",
"homepage": "http://github.com/octoblu/rhea",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "http://github.com/octoblu/rhea"
},
"dependencies": {
"debug": "^3.0.1"
},
"devDependencies": {
"eslint": "^4.9.0",
"mocha": "^3.0.0",
"browserify": "^14.4.0",
"istanbul": "0.4.5",
"minimist": "^1.1.0"
},
"scripts": {
"lint": "eslint lib/*.js",
"test": "mocha",
"coverage": "istanbul cover _mocha",
"browserify": "browserify -r .:rhea -o browser.js",
"run-examples": "mocha examples/test_examples.js"
},
"keywords": [
"amqp",
"messaging"
],
"main": "./lib/container.js"
}
Loading

0 comments on commit c771563

Please sign in to comment.