Files
node-poppler/package.json
T
dependabot[bot] ac8b34602f build(deps-dev): bump typescript from 5.8.3 to 5.9.2 (#674)
Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.8.3 to 5.9.2.
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.8.3...v5.9.2)

---
updated-dependencies:
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-01 18:28:11 +00:00

112 lines
2.3 KiB
JSON

{
"name": "node-poppler",
"version": "8.0.4",
"description": "Asynchronous Node.js wrapper for the Poppler PDF rendering library",
"keywords": [
"async",
"attach",
"cairo",
"converter",
"detach",
"eps",
"html",
"jpg",
"jpeg",
"pdf",
"pdf-converter",
"pdf-to-cairo",
"pdf-to-html",
"pdf-to-image",
"pdf-to-ppm",
"pdf-to-ps",
"pdf-to-text",
"png",
"poppler",
"ppm",
"ps",
"separate",
"svg",
"text",
"tif",
"tiff",
"txt",
"unite"
],
"main": "src/index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Fdawgs/node-poppler.git"
},
"homepage": "https://github.com/Fdawgs/node-poppler",
"bugs": {
"url": "https://github.com/Fdawgs/node-poppler/issues"
},
"license": "MIT",
"author": "Frazer Smith <frazer.dev@icloud.com>",
"funding": "https://github.com/sponsors/Fdawgs",
"engines": {
"node": ">=20"
},
"scripts": {
"build:docs": "jsdoc2md src/index.js > API.md --EOL posix",
"build": "tsc",
"lint:fix": "npm run lint -- --fix",
"lint:licenses": "licensee --errors-only --production",
"lint:prettier:fix": "prettier . -w -u",
"lint:prettier": "prettier . -c -u",
"lint": "eslint . --cache",
"prepare": "husky",
"test:unit:coverage": "jest --coverage",
"test:unit": "jest",
"test": "npm run lint && npm run lint:prettier && npm run test:unit"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageReporters": [
"text",
"lcovonly"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 100,
"lines": 90,
"statements": 90
}
},
"injectGlobals": false,
"testEnvironment": "node",
"testTimeout": 60000
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/compat": "^1.3.0",
"@fdawgs/eslint-config": "^1.0.3",
"@jest/globals": "^30.0.4",
"@types/semver": "^7.7.0",
"eslint": "^9.30.1",
"eslint-plugin-jest": "^29.0.1",
"glob": "^11.0.3",
"husky": "^9.1.7",
"jest": "^30.0.4",
"jsdoc-to-markdown": "^9.1.1",
"licensee": "^11.1.1",
"prettier": "^3.6.2",
"typescript": "~5.9.2"
},
"dependencies": {
"camelcase": "^6.3.0",
"semver": "^7.7.2"
}
}