@rpidanny/pdf2md
Version:
A PDF to Markdown Converter
80 lines (79 loc) • 2.19 kB
JSON
{
"name": "@rpidanny/pdf2md",
"version": "1.0.0",
"description": "A PDF to Markdown Converter",
"main": "lib/pdf2md.js",
"types": "types/pdf2md.d.ts",
"bin": {
"pdf2md": "lib/pdf2md-cli.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"/lib",
"/test",
"/types"
],
"scripts": {
"lint": "eslint --debug lib --cache",
"test": "mocha test --recursive",
"test:watch": "mocha test --recursive --watch",
"test:coverage": "nyc npm run test",
"check": "npm run lint && npm run test:coverage",
"prepare": "husky",
"semantic-release": "semantic-release",
"semantic-release:dry": "semantic-release --dry-run"
},
"keywords": [
"PDF",
"Markdown",
"Converter"
],
"author": "Abhishek Maharjan",
"contributors": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rpidanny/pdf2md"
},
"dependencies": {
"enumify": "^1.0.4",
"minimist": "^1.2.5",
"pdfjs-dist": "^4.2.67"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@opengovsg/eslint-config-opengovsg": "^1.0.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.1.0",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"babel-eslint": "^10.0.2",
"chai": "^4.2.0",
"commitlint": "^19.3.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-flowtype": "^3.11.1",
"eslint-plugin-flowtype-comment": "^1.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jasmine": "^2.2.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"flow-bin": "^0.102.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"mocha": "^10.2.0",
"mock-fs": "^4.10.1",
"nyc": "^15.1.0",
"rewire": "^5.0.0",
"semantic-release": "^24.0.0"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
}
}