pdf-to-markdown/core/package.json

32 lines
711 B
JSON

{
"name": "pdf-to-markdown-core",
"version": "1.0.0",
"description": "Core logic for parsing a PDF and transforming it to Markdown",
"main": "index.js",
"files": [
"lib/src/**/*"
],
"scripts": {
"test": "jest",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"keywords": [
"PDF",
"Markdown",
"Converter"
],
"author": "Johannes Zillmann",
"license": "AGPL-3.0",
"devDependencies": {
"@types/jest": "^26.0.19",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.3"
}
}