-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
{
"name": "rollup-plugin-imagemin",
"version": "0.5.0",
"description": "Imagemin meets Rollup!",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"main": "dist/index.cjs.js",
"scripts": {
"clean": "npx rimraf dist",
"build": "npm run clean && npx rollup -c rollup.config.js",
"lint": "npx eslint src/index.js test/index.js",
"test": "npx mocha --require @babel/register ./test/index.js",
"prepare": "npm run build",
"prepublish": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/malchata/rollup-plugin-imagemin.git"
},
"keywords": [
"image",
"optimization",
"rollup",
"performance",
"webperf"
],
"author": "Jeremy L. Wagner <[email protected]>",
"contributors": [
{
"name": "GerkinDev",
"email": "[email protected]",
"url": "https://ithoughts.io/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/malchata/rollup-plugin-imagemin/issues"
},
"homepage": "https://github.com/malchata/rollup-plugin-imagemin#readme",
"dependencies": {
"chalk": "^4.1.0",
"imagemin": "^7.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^9.0.0",
"mkpath": "^1.0.0",
"@rollup/pluginutils": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@babel/register": "^7.13.8",
"eslint": "^7.21.0",
"mocha": "^8.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.40.0",
"rollup-plugin-babel": "^4.3.3",
"simple-mock": "^0.8.0"
}
}