-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
52 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,33 +2,30 @@ | |
"name": "imagemin-upng", | ||
"version": "1.3.1", | ||
"description": "upng imagemin plugin", | ||
"license": "MIT", | ||
"repository": "fisker/imagemin-upng", | ||
"author": { | ||
"name": "fisker Cheung", | ||
"email": "[email protected]", | ||
"url": "https://www.fiskercheung.com/" | ||
}, | ||
"main": "dist/index.js", | ||
"files": [ | ||
"dist" | ||
], | ||
"keywords": [ | ||
"apng", | ||
"compress", | ||
"image", | ||
"imageminplugin", | ||
"img", | ||
"minify", | ||
"optimize", | ||
"png", | ||
"apng", | ||
"upng", | ||
"upng-js" | ||
], | ||
"dependencies": { | ||
"is-png": "2.0.0", | ||
"upng-js": "2.1.0" | ||
"repository": "fisker/imagemin-upng", | ||
"license": "MIT", | ||
"author": { | ||
"name": "fisker Cheung", | ||
"email": "[email protected]", | ||
"url": "https://www.fiskercheung.com/" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"sideEffects": false, | ||
"main": "dist/index.js", | ||
"scripts": { | ||
"build": "run-p build:*", | ||
"build:js": "rollup --config", | ||
|
@@ -39,15 +36,40 @@ | |
"format": "run-p format:*", | ||
"format:eslint": "yarn lint:eslint --fix", | ||
"format:markdown": "yarn lint:markdown --fix", | ||
"format:package-json": "sort-package-json \"package.json\" \"packages/*/package.json\"", | ||
"format:prettier": "yarn lint:prettier --write", | ||
"lint": "run-p lint:*", | ||
"lint:eslint": "eslint \"**/*.{js,mjs,vue}\"", | ||
"lint:markdown": "markdownlint \"**/*.md\" --ignore \"**/node_modules/**\"", | ||
"lint:package-json": "yarn run format:package-json --check", | ||
"lint:prettier": "prettier \"**/*.{css,html,js,json,less,md,scss,ts,vue,yaml,yml}\" --check", | ||
"release": "run-s build lint test format dist", | ||
"test": "ava", | ||
"test-coverage": "nyc ava" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "./node_modules/cz-conventional-changelog" | ||
} | ||
}, | ||
"ava": { | ||
"require": "esm", | ||
"verbose": true | ||
}, | ||
"nyc": { | ||
"include": [ | ||
"src/**" | ||
], | ||
"reporter": [ | ||
"lcov", | ||
"text" | ||
], | ||
"require": "esm" | ||
}, | ||
"dependencies": { | ||
"is-png": "2.0.0", | ||
"upng-js": "2.1.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/cli": "7.7.4", | ||
"@babel/core": "7.7.4", | ||
|
@@ -74,30 +96,11 @@ | |
"rollup": "1.27.8", | ||
"rollup-plugin-babel": "4.3.3", | ||
"rollup-plugin-filesize": "6.2.1", | ||
"rollup-plugin-prettier": "0.6.0" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "./node_modules/cz-conventional-changelog" | ||
} | ||
"rollup-plugin-prettier": "0.6.0", | ||
"sort-package-json": "1.30.0" | ||
}, | ||
"publishConfig": { | ||
"registry": "https://registry.npmjs.org/", | ||
"access": "public" | ||
}, | ||
"ava": { | ||
"require": "esm", | ||
"verbose": true | ||
}, | ||
"nyc": { | ||
"require": "esm", | ||
"reporter": [ | ||
"lcov", | ||
"text" | ||
], | ||
"include": [ | ||
"src/**" | ||
] | ||
}, | ||
"sideEffects": false | ||
"access": "public", | ||
"registry": "https://registry.npmjs.org/" | ||
} | ||
} |