Skip to content

Commit

Permalink
Merge pull request #38 from mrseanryan/chore/up-dependencies-2021-01
Browse files Browse the repository at this point in the history
fix: up dependencies (except electron)
  • Loading branch information
mrseanryan committed Jan 11, 2021
2 parents cb0426a + 73e9e8c commit 52616c6
Show file tree
Hide file tree
Showing 2 changed files with 2,568 additions and 1,757 deletions.
51 changes: 25 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
"license": "MIT",
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"git add"
"prettier --write"
]
},
"config": {
Expand Down Expand Up @@ -75,41 +74,40 @@
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/jest": "^24.0.25",
"@types/jest": "^26.0.20",
"@types/jquery": "^3.3.31",
"@types/node": "^13.1.2",
"@types/yargs": "^15.0.0",
"commitizen": "^4.0.3",
"coveralls": "^3.0.9",
"cross-env": "^6.0.3",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.0.2",
"exif-orientation-examples-sr": "^1.0.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-config": "^24.9.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"husky": "^4.3.7",
"jest": "^26.6.3",
"jest-config": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"prompt": "^1.0.0",
"replace-in-file": "^5.0.2",
"replace-in-file": "^6.1.0",
"rimraf": "^3.0.0",
"semantic-release": "^15.14.0",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"semantic-release": "^17.3.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard-sr": "^8.2.0",
"typedoc": "^0.15.6",
"typescript": "^3.7.4"
"typedoc": "^0.20.14",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=10.18.0"
},
"scripts": {
"clean": "rm -rf dist/",
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"lint:local": "tslint --project tsconfig.json -t codeFrame",
"lint": "tslint -p tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"lint:local": "tslint -p tsconfig.json -t codeFrame",
"prebuild": "rimraf dist",
"build": "tsc --module commonjs && typedoc --out docs --target es6 --theme minimal --mode file src && yarn build:extra",
"build": "tsc --module commonjs && typedoc --out docs --theme minimal src && yarn build:extra",
"build:extra": "yarn build:cli && yarn build:static",
"build:cli": "echo '#!/usr/bin/env node' > dist/lib/cli.js && cat dist/lib/main.js >> dist/lib/cli.js && chmod +x dist/lib/cli.js",
"build:minimal": "tsc --module commonjs && yarn build:extra",
Expand All @@ -123,7 +121,7 @@
"start:watch": "yarn build:minimal:watch",
"test": "yarn build:minimal && jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "yarn build && yarn lint && yarn test -- --no-cache",
"test:prod": "yarn build && yarn lint && yarn test --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
Expand All @@ -136,14 +134,14 @@
},
"dependencies": {
"electron": "^4.2.12",
"exifreader": "^2.13.0",
"exifreader": "^3.13.0",
"histogram": "^3.0.3",
"image-size": "^0.8.3",
"image-size": "^0.9.3",
"jquery": "^3.3.1",
"plotly.js": "^1.43.1",
"sharp": "^0.23.1",
"xmldom": "^0.2.1",
"yargs": "^15.0.2"
"sharp": "^0.27.0",
"xmldom": "^0.4.0",
"yargs": "^16.2.0"
},
"keywords": [
"electron",
Expand All @@ -160,6 +158,7 @@
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "yarn test:prod"
}
Expand Down
Loading

0 comments on commit 52616c6

Please sign in to comment.