mirror of
https://github.com/Fdawgs/node-poppler.git
synced 2026-07-02 00:17:43 +08:00
9720dc2af6
* build(deps-dev): bump typescript from 5.9.3 to 6.0.3 Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.9.3 to 6.0.3. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.3...v6.0.3) --- updated-dependencies: - dependency-name: typescript dependency-version: 6.0.3 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * build(tsconfig.build): set required rootdir --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Frazer Smith <frazer.dev@icloud.com>
116 lines
2.5 KiB
JSON
116 lines
2.5 KiB
JSON
{
|
|
"name": "node-poppler",
|
|
"version": "9.1.2",
|
|
"description": "Asynchronous Node.js wrapper for the Poppler PDF rendering utilities",
|
|
"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": "tsc -p tsconfig.build.json",
|
|
"lint:eslint:fix": "npm run lint:eslint -- --fix",
|
|
"lint:eslint": "eslint . --cache",
|
|
"lint:fix": "npm run lint:eslint:fix && npm run lint:prettier:fix",
|
|
"lint:licenses": "licensee --errors-only --production",
|
|
"lint:prettier:fix": "prettier . -w -u",
|
|
"lint:prettier": "prettier . -c -u",
|
|
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:licenses",
|
|
"test:unit:coverage": "jest --coverage",
|
|
"test:unit": "jest",
|
|
"test": "npm run lint && npm run test:unit",
|
|
"typecheck": "tsc"
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
},
|
|
"jest": {
|
|
"collectCoverageFrom": [
|
|
"src/**/*.js"
|
|
],
|
|
"coverageReporters": [
|
|
"text",
|
|
"lcovonly"
|
|
],
|
|
"coverageThreshold": {
|
|
"global": {
|
|
"branches": 96,
|
|
"functions": 100,
|
|
"lines": 99,
|
|
"statements": 99
|
|
}
|
|
},
|
|
"injectGlobals": false,
|
|
"testEnvironment": "node",
|
|
"testTimeout": 60000
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^20.1.0",
|
|
"@commitlint/config-conventional": "^20.0.0",
|
|
"@eslint/compat": "^2.0.0",
|
|
"@fdawgs/eslint-config": "^2.0.0",
|
|
"@jest/globals": "^30.0.4",
|
|
"@types/node": "^25.0.3",
|
|
"@types/semver": "^7.7.0",
|
|
"eslint": "^9.30.1",
|
|
"eslint-plugin-jest": "^29.0.1",
|
|
"glob": "^13.0.0",
|
|
"jest": "^30.0.4",
|
|
"licensee": "^12.0.1",
|
|
"prettier": "^3.6.2",
|
|
"typescript": "~6.0.3"
|
|
},
|
|
"dependencies": {
|
|
"camelcase": "^6.3.0",
|
|
"ice-barrage": "^1.0.0",
|
|
"semver": "^7.7.2"
|
|
},
|
|
"optionalDependencies": {
|
|
"node-poppler-win32": "^1.0.1"
|
|
}
|
|
}
|