-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "pdf-parse-new",
"version": "1.3.9",
"description": "Pure javascript cross-platform module to extract text from PDFs.",
"main": "lib/pdf-parse.js",
"types": "index.d.ts",
"keywords": [
"pdf-parse",
"pdf-crawler",
"xpdf",
"pdf.js",
"pdfreader",
"pdf-extractor",
"pdf2json",
"j-pdfjson",
"pdf-parser",
"pdf-extract",
"pdf-extractor",
"pdf-to-text",
"pdf-text-extract",
"pdfjs",
"server side PDF parsing",
"pdf metadata"
],
"dependencies": {
"debug": "^4.3.4",
"node-ensure": "^0.0.0"
},
"devDependencies": {
"copy-webpack-plugin": "^12.0.2",
"mocha": "^10.4.0",
"node-loader": "^2.0.0",
"webpack": "5.94.0",
"webpack-cli": "^5.1.4"
},
"scripts": {
"test": "node node_modules/mocha/bin/_mocha --recursive --slow 10000",
"build:test": "webpack --config ./test/webpack.config.js && node .\\test\\build.js",
"start": "node index.js",
"up:patch": "npm version patch",
"up:minor": "npm version minor",
"up:major": "npm version major"
},
"homepage": "https://github.com/simonegosetto/pdf-parse",
"bugs": {
"url": "https://github.com/simonegosetto/pdf-parse/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/simonegosetto/pdf-parse.git"
},
"author": "Simone Gosetto <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=20.11.0"
}
}