-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.06 KB
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
{
"name": "express-static-encoding",
"version": "1.0.0",
"description": "The middleware for Express.js framework to control compression type by accept-encoding header",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ssch1337/express-static-encoding.git"
},
"keywords": [
"express",
"staticserver",
"express-static",
"accept",
"accept-encoding",
"encoding",
"static-encoding",
"http2",
"serverpush",
"static",
"brotli",
"zopfli",
"gzip"
],
"author": "Sergey Scheglov",
"license": "MIT",
"bugs": {
"url": "https://github.com/ssch1337/express-static-encoding/issues"
},
"homepage": "https://github.com/ssch1337/express-static-encoding#readme",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/express": "^4.17.13",
"express": "^4.17.1",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
},
"dependencies": {
"serve-static": "^1.14.1"
}
}