forked from adrienjoly/npm-pdfreader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.05 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.05 KB
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
{
"name": "pdfreader",
"version": "0.0.0-development",
"description": "Read text and parse tables from PDF files. Supports tabular data with automatic column detection, and rule-based parsing.",
"main": "index.js",
"scripts": {
"prettier:print": "prettier --list-different \"./**/*.js\" \"./**/*.md\"",
"prettier:check": "npm run -s prettier:print 1>&2; exit $(npm run -s prettier:print | wc -l)",
"prettier:fix": "prettier \"./**/*.js\" \"./**/*.md\" --write --end-of-line lf",
"test:diff:buffer": "node parseAsBuffer.js test/sample.pdf >test/test-buffer-snapshot.log; git --no-pager diff test/test-buffer-snapshot.log 1>&2; exit $(git --no-pager diff test/test-buffer-snapshot.log | wc -l)",
"test:diff:file": "node test/test.js >test/test-snapshot.log; git --no-pager diff test/test-snapshot.log 1>&2; exit $(git --no-pager diff test/test-snapshot.log | wc -l)",
"test:diff": "npm run -s test:diff:file && npm run -s test:diff:buffer",
"test:sample": "node test/test.js && node parseAsBuffer.js test/sample.pdf",
"test:functional": "npm run -s test:sample && npm run -s test:diff",
"test": "npm run -s test:functional && echo ✅ All tests passed.",
"lint": "eslint .",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/adrienjoly/npm-pdfreader"
},
"keywords": [
"pdf",
"reader",
"parser",
"parse",
"parsing",
"convert",
"CLI",
"table",
"data",
"csv",
"json",
"rules"
],
"author": "Adrien Joly",
"license": "MIT",
"bugs": {
"url": "https://github.com/adrienjoly/npm-pdfreader/issues"
},
"homepage": "https://github.com/adrienjoly/npm-pdfreader",
"dependencies": {
"pdf2json": "1.2.5"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.1.3",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "2.3.0",
"semantic-release": "^17.4.3"
}
}