pdf-to-markdown/core/package.json
2021-03-13 08:46:22 +01:00

45 lines
1.2 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": {
"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",
"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"
}
}