UNPKG

imagemin-power-cli

Version:

Optimize (compress) images with power using imagemin

138 lines (137 loc) 3.85 kB
{ "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": "^5.2.0", "fs-extra": "^4.0.0", "get-stdin": "^5.0.1", "globby": "^6.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.21.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": "^20.0.3", "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.7.0", "husky": "^0.14.0", "imagemin-pngquant": "^5.0.0", "lint-staged": "^4.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": "^3.0.0", "remark-preset-lint-itgalaxy": "^6.0.0", "rimraf": "^2.5.2" }, "optionalDependencies": { "imagemin-gifsicle": "^5.0.0", "imagemin-jpegtran": "^5.0.0", "imagemin-optipng": "^5.0.0", "imagemin-svgo": "^5.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" ] } }