forked from juliomrqz/nuxt-optimized-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.1 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@bazzite/nuxt-optimized-images",
"version": "0.2.1",
"description": "Automatically optimizes images used in Nuxt.js projects (jpeg, png, svg, webp and gif).",
"main": "lib/index.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "yarn lint && jest",
"lint": "eslint --ext .js lib test",
"changelog": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bazzite/nuxt-optimized-images.git"
},
"author": "Bazzite <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bazzite/nuxt-optimized-images/issues"
},
"homepage": "https://www.bazzite.com/docs/nuxt-optimized-images/?utm_source=npm&utm_medium=readme&utm_campaign=nuxt-optimized-images",
"dependencies": {
"consola": "^2.9.0",
"imagemin": "^7.0.0",
"img-loader": "^3.0.1",
"raw-loader": "^3.0.0",
"url-loader": "^2.0.1"
},
"devDependencies": {
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"conventional-changelog-cli": "2.0.21",
"eslint": "6.0.1",
"eslint-config-dev": "2.0.0",
"eslint-config-standard": "13.0.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "22.13.6",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.0",
"eslint-plugin-vue": "5.2.3",
"husky": "3.0.1",
"imagemin-gifsicle": "6.0.1",
"imagemin-mozjpeg": "8.0.0",
"imagemin-pngquant": "8.0.0",
"imagemin-svgo": "7.0.0",
"jest": "24.8.0",
"jimp": "0.6.4",
"loader-utils": "1.2.3",
"lodash.clonedeepwith": "4.5.0",
"lodash.isstring": "4.0.1",
"lqip-loader": "2.2.0",
"responsive-loader": "1.2.0",
"sharp": "0.22.1",
"sqip-loader": "0.2.0",
"upath": "1.1.2",
"webp-loader": "0.5.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"precommit": "lint-staged"
}
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}