Skip to content
This repository was archived by the owner on Aug 10, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ lint: node_modules $(ESLINT) $(SRCS)
.PHONY: nsp
nsp: node_modules $(NSP)
@$(NPM) shrinkwrap --dev
@($(NSP) audit-shrinkwrap || echo 1) | $(NSP_BADGE)
@($(NSP) check || echo 1) | $(NSP_BADGE)
@rm $(SHRINKWRAP)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Dependency Status](https://david-dm.org/restify/plugins.svg)](https://david-dm.org/restify/plugins)
[![devDependency Status](https://david-dm.org/restify/plugins/dev-status.svg)](https://david-dm.org/restify/plugins#info=devDependencies)
[![bitHound Score](https://www.bithound.io/github/restify/plugins/badges/score.svg)](https://www.bithound.io/github/restify/plugins/master)
[![NSP Status](https://img.shields.io/badge/NSP%20status-no%20vulnerabilities-green.svg)](https://travis-ci.org/restify/plugins)
[![NSP Status](https://img.shields.io/badge/NSP%20status-vulnerabilities%20found-red.svg)](https://travis-ci.org/restify/plugins)

> A collection of core restify plugins

Expand Down
3 changes: 2 additions & 1 deletion lib/plugins/audit.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ function auditLogger(options) {
version: req.version(),
body: options.body === true ?
req.body : undefined,
timers: timers
timers: timers,
clientClosed: req.clientClosed
});
},
res: function auditResponseSerializer(res) {
Expand Down
25 changes: 12 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,31 +80,30 @@
"url": "https://github.com/restify/plugins/issues"
},
"devDependencies": {
"chai": "^3.2.0",
"coveralls": "^2.11.4",
"eslint": "^1.3.1",
"istanbul": "^0.3.19",
"jscs": "^2.1.1",
"chai": "^3.4.1",
"coveralls": "^2.11.6",
"eslint": "^1.10.3",
"istanbul": "^0.4.1",
"jscs": "^2.7.0",
"mkdirp": "^0.5.1",
"mocha": "^2.3.2",
"nsp": "^1.1.0",
"restify": "^4.0.2",
"restify-clients": "^1.1.0",
"mocha": "^2.3.4",
"nsp": "^2.1.0",
"restify": "^4.0.3",
"restify-clients": "^1.1.1",
"rimraf": "^2.4.3"
},
"dependencies": {
"assert-plus": "^0.1.5",
"assert-plus": "^0.2.0",
"bunyan": "^1.5.1",
"crypto": "0.0.3",
"csv": "^0.4.6",
"escape-regexp-component": "^1.0.2",
"formidable": "^1.0.17",
"http-signature": "^0.11.0",
"lru-cache": "^2.6.5",
"mime": "^1.3.4",
"once": "^1.3.2",
"qs": "^5.0.0",
"restify-errors": "^3.0.0",
"qs": "^5.2.0",
"restify-errors": "^3.1.0",
"vasync": "^1.6.3"
}
}