Skip to content

Commit

Permalink
fix: upgrade all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mattlubner committed Sep 2, 2021
1 parent 12f6f08 commit 6360d6f
Show file tree
Hide file tree
Showing 5 changed files with 615 additions and 870 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"root": true,
"extends": ["typescript", "typescript/prettier"],
"extends": ["typescript", "plugin:prettier/recommended", "prettier"],
"ignorePatterns": ["lib", "node_modules"]
}
31 changes: 16 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,31 +24,32 @@
"license": "MIT",
"author": "Matt Lubner <matt@mattlubner.com>",
"dependencies": {
"javascript-barcode-reader": "^0.6.8",
"jimp": "^0.14.0",
"jsqr": "^1.3.1",
"javascript-barcode-reader": "^0.6.9",
"jimp": "^0.16.1",
"jsqr": "^1.4.0",
"qrcode": "^1.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"yargs": "^16.1.0"
"ts-node": "^10.2.1",
"typescript": "^4.4.2",
"yargs": "^17.1.1"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/qrcode": "^1.3.5",
"@types/yargs": "^15.0.9",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"@types/node": "^16.7.10",
"@types/qrcode": "^1.4.1",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"is-ci": "^3.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"semantic-release": "^17.2.2"
"semantic-release": "^17.4.7"
},
"resolutions": {
"qrcode/yargs/yargs-parser": "^13.1.2",
Expand Down
3 changes: 2 additions & 1 deletion src/bin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ const argv = yargs(process.argv.slice(2))
type: 'boolean',
})
.help('h')
.alias('h', 'help').argv;
.alias('h', 'help')
.parseSync();

const [command] = argv._;

Expand Down
16 changes: 5 additions & 11 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": [
"es6"
],
"lib": ["es6"],
"module": "commonjs",
"moduleResolution": "node",
"outDir": "lib",
"resolveJsonModule": true,
Expand All @@ -14,14 +13,9 @@
"strict": true,
"target": "es5"
},
"include": [
"src/*.ts"
],
"exclude": [
"node_modules",
"package.json"
],
"include": ["src/*.ts"],
"exclude": ["node_modules", "package.json"],
"ts-node": {
"files": true
}
}
}
Loading

0 comments on commit 6360d6f

Please sign in to comment.