-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.5 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "imagemin-mozjpeg-full",
"version": "2.0.0",
"description": "Imagemin plugin for all mozjpeg binaries (cjpeg and jpegtran).",
"repository": {
"type": "git",
"url": "https://github.com/itgalaxy/imagemin-mozjpeg-full.git"
},
"homepage": "https://github.com/itgalaxy/imagemin-mozjpeg-full",
"keywords": [
"jpeg",
"jpg",
"img",
"image",
"compress",
"minify",
"mozjpeg",
"optimize",
"imagemin"
],
"author": "Itgalaxy",
"license": "MIT",
"main": "src/index.js",
"bugs": {
"url": "https://github.com/itgalaxy/imagemin-mozjpeg-full/issues"
},
"files": [
"src",
"cjpeg.js",
"jpegtran.js"
],
"dependencies": {
"exec-buffer": "^3.2.0",
"execa": "^2.0.3",
"is-jpg": "^2.0.0",
"mozjpeg-binaries": "^2.0.0"
},
"devDependencies": {
"compare-size": "3.0.0",
"babel-eslint": "^10.0.2",
"bin-check": "^4.1.0",
"eslint": "^6.0.1",
"eslint-plugin-ava": "^7.1.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-itgalaxy": "^103.0.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-lodash": "^5.1.0",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-unicorn": "^9.1.1",
"husky": "^3.0.0",
"jest": "^24.8.0",
"lint-staged": "^9.2.0",
"is-progressive": "^3.0.0",
"is-gif": "^3.0.0",
"npm-run-all": "^4.1.5",
"pify": "^4.0.1",
"prettier": "^1.18.2",
"remark-cli": "^6.0.1",
"remark-preset-lint-itgalaxy": "^14.0.0",
"standard-version": "^6.0.1",
"tempy": "^0.3.0"
},
"scripts": {
"lint:prettier": "prettier --list-different '{src,__tests__}/**/*.{js,mjs,jsx,md,yml,yaml}' '*.{js,mjs,jsx,md,yml,yaml}' '!CHANGELOG.md'",
"lint:md": "remark . -i .gitignore -f -q",
"lint:js": "eslint . --cache --cache-location 'node_modules/.cache/eslint/.eslintcache' --report-unused-disable-directives --ignore-pattern '!.*' --ignore-path .gitignore --ext '.js,.mjs,.jsx,.md'",
"lint": "npm-run-all -l -p 'lint:**'",
"prettier": "npm run lint:prettier -- --write",
"fix:js": "npm run lint:js -- --fix",
"fix": "npm-run-all -l prettier -p 'fix:**'",
"release": "standard-version",
"test:only": "jest",
"test:coverage": "jest --coverage",
"pretest": "npm run lint",
"test": "npm run test:coverage"
},
"engines": {
"node": ">= 8.9.0"
}
}