forked from jzillmann/pdf-to-markdown
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
60 lines (60 loc) · 1.51 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
59
60
{
"name": "@opendocsg/pdf2md",
"version": "0.1.32",
"description": "A PDF to Markdown Converter",
"main": "lib/pdf2md.js",
"types": "types/pdf2md.d.ts",
"bin": {
"pdf2md": "lib/pdf2md-cli.js"
},
"files": [
"/lib",
"/test",
"/types"
],
"scripts": {
"lint": "eslint lib --cache",
"test": "mocha test --recursive",
"test:watch": "mocha test --recursive --watch",
"test:coverage": "nyc npm run test",
"check": "npm run lint && npm run test:coverage"
},
"keywords": [
"PDF",
"Markdown",
"Converter"
],
"author": "Open Government Products, Government Technology Agency of Singapore (https://open.gov.sg)",
"contributors": [
"Johannes Zillmann"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/opendocsg/pdf2md"
},
"dependencies": {
"enumify": "^1.0.4",
"minimist": "^1.2.5",
"pdfjs-dist": "^4.2.67"
},
"devDependencies": {
"@opengovsg/eslint-config-opengovsg": "^1.0.6",
"babel-eslint": "^10.0.2",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-flowtype": "^3.11.1",
"eslint-plugin-flowtype-comment": "^1.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jasmine": "^2.2.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"flow-bin": "^0.102.0",
"mocha": "^10.2.0",
"mock-fs": "^4.10.1",
"nyc": "^15.1.0",
"rewire": "^5.0.0"
}
}