diff options
author | Mario <mario@mariovavti.com> | 2020-06-16 07:32:55 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-06-16 07:32:55 +0000 |
commit | 70a104f24f3b3e3903d363081569be9af2052758 (patch) | |
tree | b3d82880872255536e3ec8297e3ab6e419fac5d3 /library/cropperjs/package.json | |
parent | 0f27db6271acb3e0e44bf870659f085c71c8f629 (diff) | |
download | volse-hubzilla-70a104f24f3b3e3903d363081569be9af2052758.tar.gz volse-hubzilla-70a104f24f3b3e3903d363081569be9af2052758.tar.bz2 volse-hubzilla-70a104f24f3b3e3903d363081569be9af2052758.zip |
upĂdate copperjs to version 1.5.7
Diffstat (limited to 'library/cropperjs/package.json')
-rw-r--r-- | library/cropperjs/package.json | 84 |
1 files changed, 38 insertions, 46 deletions
diff --git a/library/cropperjs/package.json b/library/cropperjs/package.json index 81647a36b..f30522185 100644 --- a/library/cropperjs/package.json +++ b/library/cropperjs/package.json @@ -1,7 +1,7 @@ { "name": "cropperjs", "description": "JavaScript image cropper.", - "version": "1.5.6", + "version": "1.5.7", "main": "dist/cropper.common.js", "module": "dist/cropper.esm.js", "browser": "dist/cropper.js", @@ -27,7 +27,7 @@ "lint:js": "eslint src test *.js --fix", "release": "npm run clear && npm run lint && npm run build && npm run compress && npm run copy && npm test", "start": "npm-run-all --parallel watch:*", - "test": "cross-env NODE_ENV=test karma start test/karma.conf.js", + "test": "karma start", "watch:css": "postcss src/index.css -o docs/css/cropper.css -m -w", "watch:js": "rollup -c -m -w" }, @@ -54,7 +54,7 @@ ], "author": { "name": "Chen Fengyuan", - "url": "https://chenfengyuan.com" + "url": "https://chenfengyuan.com/" }, "license": "MIT", "bugs": { @@ -62,46 +62,44 @@ }, "homepage": "https://fengyuanchen.github.io/cropperjs", "devDependencies": { - "@babel/core": "^7.6.2", - "@babel/preset-env": "^7.6.2", - "@commitlint/cli": "^8.2.0", - "@commitlint/config-conventional": "^8.2.0", - "babel-plugin-istanbul": "^5.2.0", + "@babel/core": "^7.9.6", + "@babel/preset-env": "^7.9.6", + "@commitlint/cli": "^8.3.5", + "@commitlint/config-conventional": "^8.3.4", + "babel-plugin-istanbul": "^6.0.0", "chai": "^4.2.0", - "change-case": "^3.1.0", - "codecov": "^3.6.1", - "cpy-cli": "^2.0.0", + "change-case": "^4.1.1", + "codecov": "^3.7.0", + "cpy-cli": "^3.1.1", "create-banner": "^1.0.0", - "cross-env": "^6.0.3", "cssnano": "^4.1.10", - "del-cli": "^3.0.0", - "eslint": "^6.5.1", - "eslint-config-airbnb-base": "^14.0.0", - "eslint-plugin-import": "^2.18.2", - "husky": "^3.0.8", - "karma": "^4.3.0", + "del-cli": "^3.0.1", + "eslint": "^7.1.0", + "eslint-config-airbnb-base": "^14.1.0", + "eslint-plugin-import": "^2.20.2", + "husky": "^4.2.5", + "karma": "^5.0.9", "karma-chai": "^0.1.0", "karma-chrome-launcher": "^3.1.0", - "karma-coverage-istanbul-reporter": "^2.1.0", - "karma-mocha": "^1.3.0", + "karma-coverage-istanbul-reporter": "^3.0.2", + "karma-mocha": "^2.0.1", "karma-mocha-reporter": "^2.2.5", - "karma-rollup-preprocessor": "^7.0.2", - "lint-staged": "^8.2.1", - "mocha": "^6.2.1", + "karma-rollup-preprocessor": "^7.0.5", + "lint-staged": "^10.2.6", + "mocha": "^7.1.2", "npm-run-all": "^4.1.5", - "postcss-cli": "^6.1.3", - "postcss-header": "^1.0.0", + "postcss-cli": "^7.1.1", + "postcss-header": "^2.0.0", "postcss-import": "^12.0.1", "postcss-preset-env": "^6.7.0", "postcss-url": "^8.0.0", - "puppeteer": "^1.20.0", - "rollup": "^1.23.0", - "rollup-plugin-babel": "^4.3.3", - "rollup-watch": "^4.3.1", - "stylelint": "^11.0.0", - "stylelint-config-standard": "^19.0.0", - "stylelint-order": "^3.1.1", - "uglify-js": "^3.6.0" + "puppeteer": "^3.1.0", + "rollup": "^2.10.7", + "rollup-plugin-babel": "^4.4.0", + "stylelint": "^13.5.0", + "stylelint-config-standard": "^20.0.0", + "stylelint-order": "^4.0.0", + "uglify-js": "^3.9.3" }, "browserslist": [ "last 2 versions", @@ -120,19 +118,13 @@ } }, "lint-staged": { - "linters": { - "*.js": [ - "eslint --fix", - "git add" - ], - "*.{css,scss,html}": [ - "stylelint --fix", - "git add" - ] - }, - "ignore": [ - "{dist,docs}/**/*.js", - "*.min.*" + "{src,test}/**/*.js|*.conf*.js": [ + "eslint --fix", + "git add" + ], + "{src,docs}/**/*.{css,scss,html}": [ + "stylelint --fix", + "git add" ] } } |