-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.21 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.21 KB
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
{
"name": "recompress",
"version": "1.0.5",
"description": "Image resizing, multi-format generation, and compression tool.",
"main": "index.js",
"scripts": {
"lint": "eslint index.js"
},
"author": {
"email": "j.roberts@arcane.ws",
"name": "Jamieson Roberts"
},
"repository": {
"type": "git",
"url": "https://github.com/ArcaneDigital/ReCompress"
},
"keywords": [
"image",
"compression",
"resize",
"multiformat",
"webp",
"png",
"jpeg",
"jpg",
"gif",
"svg"
],
"license": "MIT",
"devDependencies": {
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"prettier": "^1.14.3"
},
"dependencies": {
"bluebird": "^3.5.2",
"fs-plus": "^3.0.2",
"globby": "^8.0.1",
"imagemin": "^6.0.0",
"imagemin-gifsicle": "^5.2.0",
"imagemin-jpegoptim": "^5.2.0",
"imagemin-pngquant": "^6.0.0",
"imagemin-svgo": "^7.0.0",
"sharp": "^0.21.0"
},
"engines": {
"node": ">= 6"
},
"files": [
"/index.js"
]
}