This repository was archived by the owner on May 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.19 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.19 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@opendocsg/pdf2md-web",
"version": "0.1.8",
"description": "A PDF to Markdown Converter",
"scripts": {
"watch": "webpack -d --watch",
"build": "webpack",
"start": "webpack-dev-server",
"lint": "eslint lib src --ext .js --ext .jsx --cache",
"test": "mocha test --recursive",
"check": "npm run lint && npm run test",
"release": "npm run lint && rm -rf build/* && NODE_ENV=production webpack -p",
"deploy": "npm run release && cp -r build/* docs/"
},
"keywords": [
"PDF",
"Markdown",
"Converter"
],
"author": "Open Government Products, Government Technology Agency of Singapore (https://open.gov.sg)",
"contributors": [
"Johannes Zillmann"
],
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/opendocsg/pdf-to-markdown"
},
"dependencies": {
"@opendocsg/pdf2md": "^0.1.8",
"bootstrap": "^3.4.1",
"enumify": "^1.0.4",
"file-saver": "^2.0.2",
"pdfjs-dist": "^2.0.489",
"rc-progress": "^2.0.6",
"react": "^15.4.2",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.4.2",
"react-dropzone": "^3.9.2",
"react-icons": "^2.2.3",
"react-overlays": "^0.6.12",
"remarkable": "^1.7.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"babel-eslint": "^7.1.1",
"babel-loader": "^8.0.6",
"chai": "^3.5.0",
"copy-webpack-plugin": "^4.0.1",
"core-js": "^2.6.9",
"css-loader": "^0.26.1",
"eslint": "^4.18.2",
"eslint-plugin-flowtype": "^3.11.1",
"eslint-plugin-flowtype-comment": "^1.0.0",
"eslint-plugin-jasmine": "^2.2.0",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^0.10.0",
"flow-bin": "^0.102.0",
"html-webpack-plugin": "^2.22.0",
"minimist": "^1.2.3",
"mocha": "^3.2.0",
"regenerator-runtime": "^0.13.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^3.11.0",
"webpack-dev-server": "^3.1.11"
}
}