-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.57 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": "pdf2md-ts",
"version": "1.1.1",
"description": "Convert pdf to markdown, support typescript",
"main": "build/pdf2md.js",
"types": "types/pdf2md.d.ts",
"files": [
"build",
"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",
"pdf2md"
],
"author": "devilyouwei",
"contributors": [
"Youwei Huang",
"Johannes Zillmann"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/uni-openai/pdf2md.git"
},
"dependencies": {
"enumify": "^1.0.4",
"pdfjs-dist": "^3.11.174"
},
"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"
}
}