forked from tkoenig89/express-static-gzip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 679 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 679 Bytes
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
{
"name": "express-static-gzip",
"version": "2.0.8",
"description": "simple wrapper on top of express.static, that allows serving pre-gziped files",
"main": "index.js",
"scripts": {
"test": "mocha test/*.spec.js"
},
"keywords": [
"express",
"static",
"gzip",
"brotli",
"serve"
],
"author": "Tobias Koenig <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/tkoenig89/express-static-gzip"
},
"license": "MIT",
"dependencies": {
"serve-static": "^1.14.1"
},
"devDependencies": {
"chai": "^4.1.2",
"express": "^4.16.3",
"mocha": "^5.2.0",
"request": "^2.87.0"
}
}