-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
1,106 additions
and
1,950 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
yarn lint-staged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
@@ -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": "[email protected]: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" | ||
|
Oops, something went wrong.