-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 913 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": "nuxt-compress",
"version": "1.0.2",
"description": "Runs gzip and brotli compression on static assets during Nuxt build",
"main": "module.js",
"repository": "github:robcresswell/nuxt-compress",
"homepage": "https://github.com/robcresswell/nuxt-compress",
"bugs": {
"url": "https://github.com/robcresswell/nuxt-compress/issues/new"
},
"engines": {
"node": ">= 12.10.0"
},
"keywords": [
"nuxt",
"nuxt.js",
"nuxtjs",
"module",
"nuxt-module",
"brotli",
"gzip",
"compress",
"compression"
],
"peerDependencies": {
"nuxt": ">=2.9.0"
},
"author": "Rob Cresswell <[email protected]>",
"license": "MIT",
"files": [
"module.js",
"README.md",
"LICENSE",
"package.json"
],
"dependencies": {
"compression-webpack-plugin": "^6.1.1"
},
"devDependencies": {
"prettier": "^2.2.1"
}
}