-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
137 lines (137 loc) · 3.75 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "imagemin-power-cli",
"version": "3.0.0",
"description": "Optimize (compress) images with power using imagemin",
"keywords": [
"cli",
"cli-app",
"compress",
"imagemin",
"gif",
"image",
"images",
"jpeg",
"jpg",
"minify",
"png",
"svg",
"webp"
],
"author": "Itgalaxy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/itgalaxy/imagemin-power-cli.git"
},
"homepage": "https://github.com/itgalaxy/imagemin-power-cli",
"bugs": "https://github.com/itgalaxy/imagemin-power-cli/issues",
"bin": {
"imagemin-power": "cli.js"
},
"engines": {
"node": ">=4"
},
"files": [
"cli.js"
],
"dependencies": {
"arrify": "^1.0.1",
"async-throttle": "^1.0.0",
"file-type": "^7.0.1",
"fs-extra": "^5.0.0",
"get-stdin": "^5.0.1",
"globby": "^7.0.0",
"imagemin": "^5.3.1",
"meow": "^3.6.0",
"ora": "^1.3.0",
"plur": "^2.1.2",
"pretty-bytes": "^4.0.0",
"replace-ext": "^1.0.0",
"strip-indent": "^2.0.0"
},
"devDependencies": {
"ava": "^0.22.0",
"babel-cli": "^6.22.2",
"babel-core": "^6.25.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-register": "^6.9.0",
"coveralls": "^2.11.0",
"eslint": "^4.1.1",
"eslint-plugin-ava": "^4.2.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-itgalaxy": "^50.0.0",
"eslint-plugin-jest": "^21.0.0",
"eslint-plugin-jsx-a11y": "^6.0.0",
"eslint-plugin-lodash": "^2.4.3",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-unicorn": "^2.1.2",
"execa": "^0.8.0",
"husky": "^0.14.0",
"imagemin-pngquant": "^5.0.0",
"lint-staged": "^5.0.0",
"npm-run-all": "^4.0.0",
"npmpub": "^3.1.0",
"nyc": "^11.0.1",
"pify": "^3.0.0",
"prettier": "^1.5.2",
"remark-cli": "^4.0.0",
"remark-preset-lint-itgalaxy": "^7.0.1",
"rimraf": "^2.5.2"
},
"optionalDependencies": {
"imagemin-gifsicle": "^5.0.0",
"imagemin-jpegtran": "^5.0.0",
"imagemin-optipng": "^5.0.0",
"imagemin-svgo": "^6.0.0"
},
"scripts": {
"precommit": "lint-staged",
"lint:eslint": "eslint . --cache --ignore-pattern '**/__tests__/**' --ignore-path .gitignore",
"lint:remark": "remark . -i .gitignore -f -q",
"lint": "npm-run-all -l -p lint:**",
"prettier": "eslint . --fix --ignore-path .gitignore",
"pretest": "npm run lint",
"test-only": "nyc ava --verbose '**/__tests__/*.js'",
"test": "npm run test-only",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"release": "npmpub"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 4
},
"useBuiltIns": true
}
]
]
},
"ava": {
"require": [
"babel-register",
"babel-polyfill"
],
"concurrency": 5,
"babel": "inherit"
},
"eslintConfig": {
"extends": [
"plugin:itgalaxy/ava",
"plugin:itgalaxy/esnext",
"plugin:itgalaxy/node"
],
"root": true
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-itgalaxy"
]
}
}