compression
Version:
Node.js compression middleware
38 lines (37 loc) • 987 B
JSON
{
"name": "compression",
"description": "Node.js compression middleware",
"version": "1.4.3",
"contributors": [
"Douglas Christopher Wilson <doug@somethingdoug.com>",
"Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
],
"license": "MIT",
"repository": "expressjs/compression",
"dependencies": {
"accepts": "~1.2.5",
"bytes": "1.0.0",
"compressible": "~2.0.2",
"debug": "~2.1.3",
"on-headers": "~1.0.0",
"vary": "~1.0.0"
},
"devDependencies": {
"istanbul": "0.3.7",
"mocha": "2.2.1",
"supertest": "~0.15.0"
},
"files": [
"LICENSE",
"HISTORY.md",
"index.js"
],
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "mocha --check-leaks --reporter spec --bail",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --reporter dot",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec"
}
}