-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps-dev): bump husky from 4.3.8 to 6.0.0
- Loading branch information
Frazer Smith
committed
Mar 29, 2021
1 parent
612dcc3
commit 3832a5b
Showing
5 changed files
with
88 additions
and
88 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
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 @@ | ||
_ |
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" | ||
|
||
npx --no-install commitlint --edit $1 |
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" | ||
|
||
npm run lint:prettier:ci && npm test |
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,87 +1,81 @@ | ||
{ | ||
"name": "node-unrtf", | ||
"version": "1.1.0", | ||
"description": "Asynchronous node.js wrapper for the UnRTF RTF conversion program", | ||
"keywords": [ | ||
"async", | ||
"converter", | ||
"html", | ||
"latex", | ||
"ps", | ||
"rtf", | ||
"rtf-converter", | ||
"rtf-to-html", | ||
"rtf-to-latex", | ||
"rtf-to-ps", | ||
"rtf-to-text", | ||
"rtf-to-wpml", | ||
"text", | ||
"txt", | ||
"unrtf", | ||
"wpml" | ||
], | ||
"main": "src/index.js", | ||
"repository": "git+https://github.com/Fdawgs/node-unrtf.git", | ||
"homepage": "https://github.com/Fdawgs/node-unrtf", | ||
"bugs": { | ||
"url": "https://github.com/Fdawgs/node-unrtf/issues" | ||
}, | ||
"license": "MIT", | ||
"author": "Frazer Smith <frazer.dev@outlook.com>", | ||
"engines": { | ||
"node": ">=10.22.0" | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
"doc": "tsc && jsdoc2md src/index.js > API.md && npm run lint:prettier", | ||
"jest": "jest --detectOpenHandles --runInBand", | ||
"jest:coverage": "jest --coverage --runInBand", | ||
"lint": "eslint . --cache --ext js,jsx --ignore-path .gitignore", | ||
"lint:prettier": "prettier . --write --ignore-unknown", | ||
"lint:prettier:ci": "prettier . --check --ignore-unknown", | ||
"test": "npm run lint && npm run jest" | ||
}, | ||
"commitlint": { | ||
"extends": [ | ||
"@commitlint/config-conventional" | ||
] | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS", | ||
"pre-commit": "npm run doc", | ||
"pre-push": "npm test && npm run lint:prettier:ci" | ||
} | ||
}, | ||
"jest": { | ||
"clearMocks": true, | ||
"coverageReporters": [ | ||
"text", | ||
"lcovonly" | ||
], | ||
"resetMocks": true, | ||
"testEnvironment": "node", | ||
"testTimeout": 10000 | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "^12.0.1", | ||
"@commitlint/config-conventional": "^12.0.1", | ||
"eslint": "^7.17.0", | ||
"eslint-config-airbnb-base": "^14.2.1", | ||
"eslint-config-prettier": "^8.1.0", | ||
"eslint-plugin-import": "^2.22.1", | ||
"eslint-plugin-jest": "^24.1.3", | ||
"eslint-plugin-jsdoc": "^32.0.1", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"eslint-plugin-security": "^1.4.0", | ||
"husky": "~4", | ||
"is-html": "^2.0.0", | ||
"jest": "^26.6.3", | ||
"jsdoc-to-markdown": "^7.0.0", | ||
"prettier": "2.2.1", | ||
"typescript": "^4.1.3" | ||
}, | ||
"dependencies": { | ||
"semver": "^7.3.4" | ||
} | ||
"name": "node-unrtf", | ||
"version": "1.1.0", | ||
"description": "Asynchronous node.js wrapper for the UnRTF RTF conversion program", | ||
"keywords": [ | ||
"async", | ||
"converter", | ||
"html", | ||
"latex", | ||
"ps", | ||
"rtf", | ||
"rtf-converter", | ||
"rtf-to-html", | ||
"rtf-to-latex", | ||
"rtf-to-ps", | ||
"rtf-to-text", | ||
"rtf-to-wpml", | ||
"text", | ||
"txt", | ||
"unrtf", | ||
"wpml" | ||
], | ||
"main": "src/index.js", | ||
"repository": "git+https://github.com/Fdawgs/node-unrtf.git", | ||
"homepage": "https://github.com/Fdawgs/node-unrtf", | ||
"bugs": { | ||
"url": "https://github.com/Fdawgs/node-unrtf/issues" | ||
}, | ||
"license": "MIT", | ||
"author": "Frazer Smith <frazer.dev@outlook.com>", | ||
"engines": { | ||
"node": ">=10.22.0" | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
"doc": "tsc && jsdoc2md src/index.js > API.md && npm run lint:prettier", | ||
"jest": "jest --detectOpenHandles --runInBand", | ||
"jest:coverage": "jest --coverage --runInBand", | ||
"lint": "eslint . --cache --ext js,jsx --ignore-path .gitignore", | ||
"lint:prettier": "prettier . --write --ignore-unknown", | ||
"lint:prettier:ci": "prettier . --check --ignore-unknown", | ||
"prepare": "husky install && rm -rf .git/hooks && ln -s ../.husky .git/hooks", | ||
"test": "npm run lint && npm run jest" | ||
}, | ||
"commitlint": { | ||
"extends": [ | ||
"@commitlint/config-conventional" | ||
] | ||
}, | ||
"jest": { | ||
"clearMocks": true, | ||
"coverageReporters": [ | ||
"text", | ||
"lcovonly" | ||
], | ||
"resetMocks": true, | ||
"testEnvironment": "node", | ||
"testTimeout": 10000 | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "^12.0.1", | ||
"@commitlint/config-conventional": "^12.0.1", | ||
"eslint": "^7.17.0", | ||
"eslint-config-airbnb-base": "^14.2.1", | ||
"eslint-config-prettier": "^8.1.0", | ||
"eslint-plugin-import": "^2.22.1", | ||
"eslint-plugin-jest": "^24.1.3", | ||
"eslint-plugin-jsdoc": "^32.0.1", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"eslint-plugin-security": "^1.4.0", | ||
"husky": "^6.0.0", | ||
"is-html": "^2.0.0", | ||
"jest": "^26.6.3", | ||
"jsdoc-to-markdown": "^7.0.0", | ||
"prettier": "2.2.1", | ||
"typescript": "^4.1.3" | ||
}, | ||
"dependencies": { | ||
"semver": "^7.3.4" | ||
} | ||
} |