vertx3-eventbus-rx-client
Version:
RxJS powered Event Bus client for Vert.x 3
89 lines (88 loc) • 2.38 kB
JSON
{
"name": "vertx3-eventbus-rx-client",
"version": "0.4.2",
"description": "RxJS powered Event Bus client for Vert.x 3",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/hcsalis/vertx3-eventbus-rx-client.git"
},
"author": {
"name": "Halil Can Salis"
},
"keywords": [
"vertx3-eventbus-client",
"vertx",
"vert.x",
"eventbus",
"client",
"rxjs",
"reactive",
"sockjs",
"javascript",
"typescript"
],
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"build": "npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty",
"docs": "npm run build && typedoc --name \"RxJS powered Event Bus client for Vert.x 3\" --theme minimal --excludePrivate --mode file --out ./docs ./dist",
"test": "npm run build && mocha --compilers ts:ts-node/register --recursive \"spec/**/*.spec.ts\"",
"e2e": "npm run build && mocha --compilers ts:ts-node/register --recursive \"spec/**/*.e2e.ts\"",
"coverage": "nyc --include=\"src/**/*.ts\" --reporter=text --reporter=lcov mocha --compilers ts:ts-node/register --recursive \"spec/**/*.spec.ts\"",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch",
"watch:e2e": "npm run e2e -- --watch"
},
"dependencies": {},
"peerDependencies": {
"rxjs": "^5.0.0",
"vertx3-eventbus-client": ">=3.4.0 <3.5.0"
},
"devDependencies": {
"@types/chai": "^3.0.0",
"@types/mocha": "^2.0.0",
"@types/node": "^7.0.0",
"@types/sinon": "^2.2.0",
"@types/sinon-chai": "^2.7.27",
"chai": "^3.0.0",
"coveralls": "^2.0.0",
"mocha": "^3.0.0",
"nyc": "^10.0.0",
"rimraf": "^2.0.0",
"rxjs": "^5.0.0",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"ts-node": "^3.0.0",
"tslint": "^5.0.0",
"typedoc": "^0.7.0",
"typescript": "^2.0.0",
"vertx3-eventbus-client": "~3.4.2"
},
"engines": {
"node": ">=4.0.0"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"dist",
"src/model/",
"src/**/*.d.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [],
"all": true
}
}