Skip to content

Commit

Permalink
update readme / package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
heapwolf committed Aug 12, 2015
1 parent cf75e5f commit 95151db
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
A minimalist event emitter for C++14.

# DESCRIPTION
Event emitters are handy for evented programming, Node.js has a
[`nice one`](https://github.com/joyent/node/blob/master/lib/events.js).
Event emitters are handy for evented programming, `node.js`/`io.js`
has a [`nice one`](https://iojs.org/api/events.html).
This one is similar, but with a few less features. This emitter
allows you to emit and receive arbitrary/variadic paramaters of equal
type.
allows you to emit and receive arbitrary/variadic paramaters of
equal type.

# BUILD STATUS
![build-status](https://travis-ci.org/hij1nx/cpp-eventemitter.svg)
Expand Down
12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
{
"name": "emitter",
"version": "1.0.0",
"description": "EventEmitter in C++",
"name": "eventemitter",
"version": "2.0.0",
"description": "EventEmitter for C++14",
"repository": {
"type": "git",
"url": "git://github.com/hij1nx/emitter.git"
},
"homepage": "https://github.com/thlorenz/ee",
"homepage": "https://github.com/hij1nx/cpp-eventemitter",
"dependencies": {
"clib": "~0.2.0"
},
"src": [
"src/events.h",
"events.h"
],
"keywords": [
"event",
"listener",
"eventemitter",
"emitter",
"observe",
"subscribe"
Expand Down

0 comments on commit 95151db

Please sign in to comment.