forked from expressjs/compression
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
61 lines (61 loc) · 1.5 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "shrink-ray",
"description": "Node.js compression middleware with brotli and zopfli support",
"version": "0.1.4",
"contributors": [
"Douglas Christopher Wilson <doug@somethingdoug.com>",
"Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
"Sasha Aickin"
],
"license": "MIT",
"repository": "aickin/compression",
"keywords": [
"compression",
"gzip",
"deflate",
"brotli",
"zopfli",
"middleware",
"express",
"connect",
"compress",
"content-encoding"
],
"dependencies": {
"accepts": "1.3.3",
"bytes": "2.5.0",
"compressible": "2.0.10",
"debug": "2.6.3",
"iltorb": "1.0.13",
"lru-cache": "4.0.2",
"multipipe": "1.0.2",
"node-zopfli": "2.0.2",
"on-headers": "1.0.1",
"stream-buffers": "3.0.1",
"vary": "1.1.1"
},
"devDependencies": {
"eslint": "2.9.0",
"eslint-config-standard": "5.3.1",
"eslint-plugin-promise": "1.1.0",
"eslint-plugin-standard": "1.3.2",
"expect": "1.20.2",
"istanbul": "0.4.5",
"mocha": "3.2.0",
"supertest": "3.0.0"
},
"files": [
"LICENSE",
"HISTORY.md",
"index.js"
],
"engines": {
"node": ">= 4.2.0"
},
"scripts": {
"lint": "eslint **/*.js",
"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"
}
}