forked from domadams/pre-compressed-assets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 949 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 949 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
32
33
34
35
36
37
38
39
40
{
"name": "pre-compressed-assets",
"version": "2.1.1",
"description": "Middleware for using pre-compressed gzip or brotli files based on regex url pattern",
"main": "src/index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint src/index.js",
"clean": "rimraf node_modules/ package-lock.json"
},
"repository": {
"type": "git",
"url": "git@github.com:domadams/pre-compressed-assets.git"
},
"keywords": [
"node",
"express",
"middleware",
"compression",
"brotli",
"gzip"
],
"author": "Dom Adams",
"license": "MIT",
"bugs": {
"url": "https://github.com/domadams/pre-compressed-assets/issues"
},
"homepage": "https://github.com/domadams/pre-compressed-assets#readme",
"dependencies": {
"glob": "^7.1.3",
"mime-types": "^2.1.22"
},
"devDependencies": {
"eslint": "^5.15.1",
"rimraf": "^2.6.3"
},
"peerDependencies": {
"express": "^4.0.0"
}
}