forked from aickin/shrink-ray
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from Alorel/greenkeeper/multipipe-2.0.1
Greenkeeper/multipipe 2.0.1
- Loading branch information
Showing
3 changed files
with
48 additions
and
49 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,23 +1,23 @@ | ||
{ | ||
"name": "shrink-ray-current", | ||
"description": "Node.js compression middleware with brotli and zopfli support", | ||
"version": "1.0.0", | ||
"contributors": [ | ||
"name": "shrink-ray-current", | ||
"description": "Node.js compression middleware with brotli and zopfli support", | ||
"version": "2.0.0", | ||
"contributors": [ | ||
"Arturas Molcanovas <[email protected]> (https://alorel.github.io)", | ||
"Douglas Christopher Wilson <[email protected]>", | ||
"Jonathan Ong <[email protected]> (http://jongleberry.com)", | ||
"Sasha Aickin" | ||
], | ||
"license": "MIT", | ||
"repository": { | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/Alorel/shrink-ray.git" | ||
"url": "git+https://github.com/Alorel/shrink-ray.git" | ||
}, | ||
"homepage": "https://github.com/Alorel/shrink-ray", | ||
"bugs": { | ||
"homepage": "https://github.com/Alorel/shrink-ray", | ||
"bugs": { | ||
"url": "https://github.com/Alorel/shrink-ray/issues" | ||
}, | ||
"keywords": [ | ||
"keywords": [ | ||
"compression", | ||
"gzip", | ||
"deflate", | ||
|
@@ -29,37 +29,37 @@ | |
"compress", | ||
"content-encoding" | ||
], | ||
"dependencies": { | ||
"accepts": "^1.3.4", | ||
"bytes": "^3.0.0", | ||
"compressible": "^2.0.12", | ||
"debug": "^3.1.0", | ||
"iltorb": "^2.0.2", | ||
"lru-cache": "^4.1.1", | ||
"multipipe": "^1.0.2", | ||
"node-zopfli": "^2.0.2", | ||
"on-headers": "^1.0.1", | ||
"dependencies": { | ||
"accepts": "^1.3.4", | ||
"bytes": "^3.0.0", | ||
"compressible": "^2.0.12", | ||
"debug": "^3.1.0", | ||
"iltorb": "^2.0.2", | ||
"lru-cache": "^4.1.1", | ||
"multipipe": "^2.0.1", | ||
"node-zopfli": "^2.0.2", | ||
"on-headers": "^1.0.1", | ||
"stream-buffers": "^3.0.1", | ||
"vary": "^1.1.2" | ||
"vary": "^1.1.2" | ||
}, | ||
"devDependencies": { | ||
"coveralls": "^3.0.0", | ||
"expect": "^21.2.1", | ||
"coveralls": "^3.0.0", | ||
"expect": "^21.2.1", | ||
"greenkeeper-lockfile": "^1.12.0", | ||
"mocha": "^4.0.1", | ||
"nyc": "^11.3.0", | ||
"snyk": "^1.49.3", | ||
"supertest": "^3.0.0" | ||
"mocha": "^4.0.1", | ||
"nyc": "^11.3.0", | ||
"snyk": "^1.49.3", | ||
"supertest": "^3.0.0" | ||
}, | ||
"engines": { | ||
"node": ">=4.8" | ||
"engines": { | ||
"node": ">=6.0" | ||
}, | ||
"scripts": { | ||
"reinstall": "rm -rf node_modules package-lock.json && npm install", | ||
"test": "nyc mocha --check-leaks --bail", | ||
"prepare": "snyk protect", | ||
"snyk:wizard": "snyk wizard --dev", | ||
"scripts": { | ||
"reinstall": "rm -rf node_modules package-lock.json && npm install", | ||
"test": "nyc mocha --check-leaks --bail", | ||
"prepare": "snyk protect", | ||
"snyk:wizard": "snyk wizard --dev", | ||
"version-readme": "node ./prepublish.js" | ||
}, | ||
"snyk": true | ||
"snyk": true | ||
} |