-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "@pomgui/pdf-tables-parser",
"version": "0.2.0",
"description": "Library to extract text tables from pdf files.",
"keywords": [
"pdf",
"pdf-parser",
"pdf-tables",
"pdf-reader",
"pdfjs"
],
"author": "Wilfredo Pomier ([email protected])",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/pomgui/pdf-tables-parser.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "npm run clean && tsc && webpack",
"tsc": "tsc",
"clean": "rm -r ./demo/bundles ./dist ./coverage 2>/dev/null; true",
"cover": "nyc npm run test",
"cover:check": "nyc --check-coverage npm run test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "tslint src/**/*.ts test/**/*.ts",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"test": "jasmine-ts --config=spec/support/jasmine.json",
"version": "npm run build"
},
"devDependencies": {
"@types/jasmine": "^4.3.2",
"@types/node": "^20.2.5",
"@types/pdfjs-dist": "^2.10.378",
"jasmine": "^5.0.0",
"jasmine-ts": "^0.4.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.0.4",
"webpack": "^5.84.1",
"webpack-cli": "^5.1.1"
},
"dependencies": {
"pdfjs-dist": "^3.7.107",
"tslib": "^2.5.2"
}
}