forked from MAXMASTER001/tabula-js
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.59 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
{
"name": "fresh-tabula-js",
"version": "2.0.0",
"description": "Extract CSV data from PDF tables using tabula-java.",
"main": "lib/bundle.js",
"files": [
"lib",
"bin",
"CHANGELOG.md"
],
"scripts": {
"build": "rm -rf lib && rollup --config",
"test": "jest src",
"test:cov": "npm run test -- --coverage --coverageReporters=text-lcov --detectOpenHandles --forceExit",
"test:cov-report": "npm run test:cov | coveralls",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdtinney/fresh-tabula-js.git"
},
"keywords": [
"pdf",
"parser",
"tables",
"csv",
"pdf to csv"
],
"author": "Colin Tinney <[email protected]> (https://tinney.dev/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cdtinney/fresh-tabula-js/issues"
},
"homepage": "https://github.com/cdtinney/fresh-tabula-js#readme",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"coveralls": "^3.0.3",
"highland": "^2.13.4",
"highland-process": "^1.0.5",
"lodash": "^4.17.11"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.2.0",
"@semantic-release/git": "^7.0.8",
"jest": "^24.8.0",
"rollup": "^1.12.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.0.0",
"semantic-release": "^15.13.12"
}
}