-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
42 lines (42 loc) · 904 Bytes
/
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
{
"name": "express-static-gzip",
"version": "2.2.0",
"description": "simple wrapper on top of express.static, that allows serving pre-gziped files",
"main": "index.js",
"types": "index.d.ts",
"files": [
"util/",
"LICENSE.md",
"README.md",
"index.d.ts"
],
"scripts": {
"test": "mocha test/*.spec.js",
"test:coverage": "nyc --reporter=lcov mocha"
},
"keywords": [
"express",
"static",
"gzip",
"brotli",
"serve",
"compression"
],
"author": "Tobias Koenig <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/tkoenig89/express-static-gzip"
},
"license": "MIT",
"dependencies": {
"parseurl": "^1.3.3",
"serve-static": "^1.16.2"
},
"devDependencies": {
"chai": "^4.1.2",
"express": "^4.21.0",
"mocha": "^5.2.0",
"nyc": "^15.1.0",
"request": "^2.87.0"
}
}