mirror of
https://github.com/jzillmann/pdf-to-markdown.git
synced 2025-02-17 10:20:47 +01:00
* `ts`, `jest`, `prettier` and `tslint` * Used resources * https://itnext.io/step-by-step-building-and-publishing-an-npm-typescript-package-44fe7164964c * https://til.hashrocket.com/posts/lmnsdtce3y-import-absolute-paths-in-typescript-jest-tests
32 lines
711 B
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"
|
|
}
|
|
}
|