Skip to content
This repository has been archived by the owner on Aug 7, 2020. It is now read-only.

Commit

Permalink
build: upgrade kind-of to fix security vulnerability
Browse files Browse the repository at this point in the history
  • Loading branch information
favna committed Apr 1, 2020
1 parent afac81f commit c186368
Show file tree
Hide file tree
Showing 2 changed files with 488 additions and 625 deletions.
24 changes: 13 additions & 11 deletions package.json
Expand Up @@ -25,6 +25,7 @@
"test": "jest",
"start": "ts-node ./lib/index.ts",
"build": "tsc",
"style": "prettier --write src/**/*.ts",
"prepublishOnly": "yarn clean && yarn build",
"clean": "rimraf ./dist ./tsconfig.tsbuildinfo",
"up": "yarn upgrade-interactive --latest",
Expand Down Expand Up @@ -54,28 +55,27 @@
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@favware/eslint-config": "^3.3.0",
"@favware/ts-config": "^1.1.2",
"@favware/eslint-config": "^3.3.1",
"@favware/ts-config": "^1.1.3",
"@types/common-tags": "^1.8.0",
"@types/git-config-path": "^2.0.0",
"@types/jest": "^25.1.4",
"@types/jsonfile": "^5.0.0",
"@types/node": "^13.9.1",
"@types/node": "^13.9.8",
"@types/parse-git-config": "^3.0.0",
"@types/which": "^1.3.2",
"@types/yargs-interactive": "^2.1.0",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jest": "^25.2.4",
"jsonfile": "^6.0.1",
"lint-staged": "^10.0.8",
"lint-staged": "^10.1.1",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"standard-version": "^7.1.0",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"ts-jest": "^25.3.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"files": [
Expand All @@ -85,7 +85,7 @@
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged && yarn lint-staged"
"pre-commit": "yarn lint-staged"
}
},
"commitlint": {
Expand All @@ -95,7 +95,8 @@
},
"lint-staged": {
"*.ts": [
"eslint --fix --ext ts"
"eslint --fix --ext ts",
"prettier --write"
]
},
"config": {
Expand All @@ -105,6 +106,7 @@
},
"resolutions": {
"acorn": "^7.1.1",
"minimist": "^1.2.2"
"minimist": "^1.2.2",
"kind-of": "^6.0.3"
}
}

0 comments on commit c186368

Please sign in to comment.