-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
restrict to node 0.12.0 and higher for native promises
- Loading branch information
Martin
committed
May 15, 2015
1 parent
99f947c
commit b41b2db
Showing
1 changed file
with
30 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"name": "hapi-intercom", | ||
"version": "1.0.0", | ||
"description": "A hapi module that enables horizontal eventdriven communication between modules", | ||
"main": "src/plugin.js", | ||
"scripts": { | ||
"test": "gulp" | ||
}, | ||
"keywords": [ | ||
"name": "hapi-intercom", | ||
"version": "1.0.0", | ||
"description": "A hapi module that enables horizontal eventdriven communication between modules", | ||
"main": "src/plugin.js", | ||
"scripts": { | ||
"test": "gulp" | ||
}, | ||
"keywords": [ | ||
"radio", | ||
"eventbus", | ||
"hapi", | ||
|
@@ -18,22 +18,25 @@ | |
"request", | ||
"reply" | ||
], | ||
"author": "atroo GbR <[email protected]>", | ||
"license": "ISC", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/atroo/hapi-intercom" | ||
}, | ||
"dependencies": { | ||
"underscore": "^1.8.2" | ||
}, | ||
"devDependencies": { | ||
"boom": "^2.6.1", | ||
"chai": "^2.1.2", | ||
"gulp": "^3.8.11", | ||
"gulp-mocha": "^2.0.0", | ||
"gulp-plumber": "^1.0.0", | ||
"gulp-util": "^3.0.4", | ||
"hapi": "^8.4.0" | ||
} | ||
} | ||
"author": "atroo GbR <[email protected]>", | ||
"license": "ISC", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/atroo/hapi-intercom" | ||
}, | ||
"engines": { | ||
"node" : ">=0.12.0" | ||
}, | ||
"dependencies": { | ||
"underscore": "^1.8.2" | ||
}, | ||
"devDependencies": { | ||
"boom": "^2.6.1", | ||
"chai": "^2.1.2", | ||
"gulp": "^3.8.11", | ||
"gulp-mocha": "^2.0.0", | ||
"gulp-plumber": "^1.0.0", | ||
"gulp-util": "^3.0.4", | ||
"hapi": "^8.4.0" | ||
} | ||
} |