-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·52 lines (52 loc) · 1.44 KB
/
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
43
44
45
46
47
48
49
50
51
52
{
"name": "@nuxtjs/imagemin",
"version": "1.0.1",
"description": "Automatically optimize (compress) all images used in Nuxt.js",
"repository": "nuxt-community/imagemin-module",
"license": "MIT",
"contributors": [
"Ricardo Gobbo de Souza <ricardogobbosouza@yahoo.com.br>"
],
"main": "./dist/module.js",
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "siroc build",
"prepublishOnly": "yarn build",
"dev": "nuxt dev test/fixture",
"lint": "eslint --ext .js,.ts,.vue .",
"release": "yarn test && yarn build && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && yarn jest"
},
"dependencies": {
"consola": "^2.15.3",
"image-minimizer-webpack-plugin": "^1.0.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^9.0.0"
},
"devDependencies": {
"@babel/preset-typescript": "latest",
"@nuxt/test-utils": "latest",
"@nuxt/types": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/jest": "latest",
"@types/node": "latest",
"del": "latest",
"eslint": "latest",
"fs-extra": "latest",
"glob": "latest",
"jest": "latest",
"nuxt": "latest",
"siroc": "latest",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
}
}