Comparing version 1.2.8 to 1.2.10
@@ -156,5 +156,5 @@ /* | ||
*/ | ||
requestOne(subject: string, timeout: number, callback: Function); | ||
requestOne(subject: string, msg: any, timeout: number, callback: Function); | ||
requestOne(subject: string, msg: any, options: SubscribeOptions, timeout: number, callback: Function); | ||
requestOne(subject: string, timeout: number, callback: Function): number; | ||
requestOne(subject: string, msg: any, timeout: number, callback: Function): number; | ||
requestOne(subject: string, msg: any, options: SubscribeOptions, timeout: number, callback: Function): number; | ||
@@ -161,0 +161,0 @@ /** |
@@ -35,3 +35,3 @@ /* | ||
*/ | ||
const VERSION = '1.2.8', | ||
const VERSION = '1.2.10', | ||
@@ -38,0 +38,0 @@ DEFAULT_PORT = 4222, |
{ | ||
"name": "nats", | ||
"version": "1.2.8", | ||
"version": "1.2.10", | ||
"description": "Node.js client for NATS, a lightweight, high-performance cloud native messaging system", | ||
@@ -34,3 +34,4 @@ "keywords": [ | ||
"test:unit": "mkdir -p reports/ && NODE_ENV=test multi='spec=- xunit=reports/mocha-xunit.xml' nyc mocha --timeout 10000 --slow 750", | ||
"test": "npm run depcheck && npm run depcheck:unused && npm run lint && npm run test:unit", | ||
"test": "npm run depcheck && npm run depcheck:unused && npm run lint && npm run test:typescript && npm run test:unit", | ||
"test:typescript": "./node_modules/typescript/bin/tsc --strict --noEmit tstest/main.ts", | ||
"coveralls": "npm run test && nyc report --reporter=text-lcov | coveralls", | ||
@@ -50,14 +51,15 @@ "cover": "nyc report --reporter=html && open coverage/index.html", | ||
"@types/node": "^11.11.6", | ||
"minimist": "^1.2.0", | ||
"coveralls": "^3.0.2", | ||
"dependency-check": "^3.2.1", | ||
"eslint": "^5.10.0", | ||
"nyc": "^13.3.0", | ||
"js-beautify": "^1.6.12", | ||
"jshint": "^2.9.6", | ||
"jshint-stylish": "2.2.x", | ||
"minimist": "^1.2.0", | ||
"mocha": "^5.2.0", | ||
"mocha-lcov-reporter": "1.2.x", | ||
"mocha-multi": "^1.0.1", | ||
"should": ">= 9.0.0" | ||
"nyc": "^13.3.0", | ||
"should": ">= 9.0.0", | ||
"typescript": "^3.4.3" | ||
}, | ||
@@ -64,0 +66,0 @@ "typings": "./index.d.ts", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
93452
14