mirror of
https://github.com/jzillmann/pdf-to-markdown.git
synced 2024-11-23 16:23:54 +01:00
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "pdf-to-markdown-core",
|
|
"version": "0.5.0",
|
|
"description": "Core logic for parsing a PDF and transforming it to Markdown",
|
|
"keywords": [
|
|
"PDF",
|
|
"Markdown",
|
|
"Converter"
|
|
],
|
|
"author": "Johannes Zillmann",
|
|
"license": "AGPL-3.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jzillmann/pdf-to-markdown"
|
|
},
|
|
"main": "lib/src/index.js",
|
|
"types": "lib/src/index.d.ts",
|
|
"files": [
|
|
"lib/src/**/*"
|
|
],
|
|
"scripts": {
|
|
"postinstall": "patch-package",
|
|
"test": "jest",
|
|
"test-write": "jest --updateSnapshot test/Files.test.ts",
|
|
"build": "tsc",
|
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
"lint": "tslint -p tsconfig.json",
|
|
"prepare": "npm run build",
|
|
"prepublishOnly": "npm test && npm run lint",
|
|
"preversion": "npm run lint",
|
|
"version": "npm run format && git add -A src",
|
|
"postversion": "git push && git push --tags"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.19",
|
|
"jest": "^26.6.3",
|
|
"jest-file-snapshot": "^0.5.0",
|
|
"patch-package": "^6.4.7",
|
|
"pdfjs-dist": "^2.5.207",
|
|
"prettier": "^2.2.1",
|
|
"ts-jest": "^26.4.4",
|
|
"tslint": "^6.1.3",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"typescript": "^4.1.3"
|
|
},
|
|
"dependencies": {
|
|
"@types/string-similarity": "^4.0.0",
|
|
"string-similarity": "^4.0.4"
|
|
}
|
|
}
|