-
-
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.
* chore: release 1.0.8 * chore(changelog): fix tag order Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Frazer Smith <[email protected]>
- Loading branch information
1 parent
e907d49
commit c0a35f5
Showing
2 changed files
with
159 additions
and
95 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 |
---|---|---|
@@ -1,89 +1,89 @@ | ||
{ | ||
"name": "node-unrtf", | ||
"version": "1.0.7", | ||
"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 <[email protected]>", | ||
"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 \"**/!(CHANGELOG.md|package.json)\" --write --ignore-path .gitignore --ignore-unknown", | ||
"lint:prettier:ci": "prettier \"**/!(CHANGELOG.md|package.json)\" --check --ignore-path .gitignore --ignore-unknown", | ||
"test": "npm run lint && npm run jest" | ||
}, | ||
"commitlint": { | ||
"extends": [ | ||
"@commitlint/config-conventional" | ||
] | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS", | ||
"pre-push": "npm test && npm run lint:prettier:ci && npm run doc" | ||
} | ||
}, | ||
"jest": { | ||
"clearMocks": true, | ||
"coverageReporters": [ | ||
"text", | ||
"lcovonly" | ||
], | ||
"resetMocks": true, | ||
"testEnvironment": "node", | ||
"testTimeout": 10000 | ||
}, | ||
"prettier": { | ||
"endOfLine": "lf", | ||
"semi": true, | ||
"tabWidth": 4, | ||
"useTabs": true | ||
}, | ||
"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" | ||
} | ||
"name": "node-unrtf", | ||
"version": "1.0.8", | ||
"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 <[email protected]>", | ||
"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 \"**/!(CHANGELOG.md|package.json)\" --write --ignore-path .gitignore --ignore-unknown", | ||
"lint:prettier:ci": "prettier \"**/!(CHANGELOG.md|package.json)\" --check --ignore-path .gitignore --ignore-unknown", | ||
"test": "npm run lint && npm run jest" | ||
}, | ||
"commitlint": { | ||
"extends": [ | ||
"@commitlint/config-conventional" | ||
] | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS", | ||
"pre-push": "npm test && npm run lint:prettier:ci && npm run doc" | ||
} | ||
}, | ||
"jest": { | ||
"clearMocks": true, | ||
"coverageReporters": [ | ||
"text", | ||
"lcovonly" | ||
], | ||
"resetMocks": true, | ||
"testEnvironment": "node", | ||
"testTimeout": 10000 | ||
}, | ||
"prettier": { | ||
"endOfLine": "lf", | ||
"semi": true, | ||
"tabWidth": 4, | ||
"useTabs": true | ||
}, | ||
"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" | ||
} | ||
} |