forked from Alorel/shrink-ray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.77 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
62
63
64
65
66
67
68
69
70
71
{
"name": "shrink-ray-current",
"description": "Node.js compression middleware with brotli and zopfli support",
"version": "4.1.2",
"contributors": [
"Arturas Molcanovas <[email protected]> (https://github.com/Alorel)",
"CodeIter (https://github.com/CodeIter)",
"Douglas Christopher Wilson <[email protected]>",
"Jonathan Ong <[email protected]> (http://jongleberry.com)",
"Scott Davis (https://github.com/scttdavs)",
"Sasha Aickin",
"James Zetlen (https://github.com/zetlen)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Alorel/shrink-ray.git"
},
"bugs": {
"url": "https://github.com/Alorel/shrink-ray/issues"
},
"keywords": [
"compression",
"gzip",
"deflate",
"brotli",
"zopfli",
"middleware",
"express",
"connect",
"compress",
"content-encoding"
],
"dependencies": {
"@types/express": "*",
"@types/iltorb": "*",
"@types/node": ">=12.12.3",
"accepts": "^1.3.0",
"bytes": "^3.0.0",
"compressible": "^2.0.0",
"debug": "^4.0.0",
"lru-cache": "^5.1.1",
"multipipe": "^3.0.0",
"on-headers": "^1.0.0",
"stream-buffers": "^3.0.0",
"vary": "^1.1.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
"doctoc": "^1.4.0",
"expect": "^24.1.0",
"iltorb": "^2.0.0",
"mocha": "^6.1.4",
"node-zopfli-es": "^1.0.3",
"nyc": "^15.0.0",
"proxyquire": "^2.1.0",
"supertest": "^4.0.0"
},
"peerDependencies": {
"iltorb": "^2.0.0",
"node-zopfli-es": "^1.0.3"
},
"engines": {
"node": ">=8.0"
},
"scripts": {
"reinstall": "rm -rf node_modules package-lock.json && npm install",
"test": "nyc mocha --check-leaks --bail",
"doctoc": "doctoc --github README.md"
}
}