Skip to content

Commit

Permalink
feat(npm): upgrade deps & fix #12
Browse files Browse the repository at this point in the history
  • Loading branch information
acrazing committed Jul 25, 2021
1 parent 5404554 commit 6085d16
Show file tree
Hide file tree
Showing 6 changed files with 1,106 additions and 1,950 deletions.
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

yarn lint-staged
38 changes: 17 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dpdm",
"version": "3.6.1",
"version": "3.7.0",
"description": "Analyze circular dependencies in your JavaScript/TypeScript projects.",
"keywords": [
"circular",
Expand Down Expand Up @@ -41,42 +41,38 @@
"clean": "rm -rf cjs esm lib build temp .cache",
"prepublishOnly": "run-s test build",
"start": "npm run clean && npm run build:esm -- --watch",
"test": "jest"
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git@github.com:acrazing/dpdm.git"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.23",
"husky": "^4.3.7",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"@types/jest": "^26.0.24",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"rollup": "^2.47.0",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1"
"prettier": "^2.3.2",
"rollup": "^2.53.3",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0"
},
"dependencies": {
"@types/fs-extra": "^9.0.11",
"@types/glob": "^7.1.3",
"@types/yargs": "^16.0.1",
"@types/fs-extra": "^9.0.12",
"@types/glob": "^7.1.4",
"@types/yargs": "^17.0.2",
"chalk": "^4.1.1",
"fs-extra": "^10.0.0",
"glob": "^7.1.7",
"ora": "^5.4.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4",
"ora": "^5.4.1",
"tslib": "^2.3.0",
"typescript": "^4.3.5",
"yargs": "^17.0.1"
},
"cliVersion": "8.8.4",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,less,scss,md}": [
"prettier --write"
Expand Down

0 comments on commit 6085d16

Please sign in to comment.