pdf-to-markdown/package.json

68 lines
2.0 KiB
JSON
Raw Normal View History

2016-11-11 19:47:20 +01:00
{
"name": "pdf-to-markdown",
2021-07-12 14:48:57 +02:00
"version": "0.1.3",
2017-01-06 20:49:37 +01:00
"description": "A PDF to Markdown Converter",
2016-11-11 19:47:20 +01:00
"main": "main.js",
"scripts": {
2021-07-12 14:37:09 +02:00
"watch": "webpack --mode development --watch",
2017-01-06 20:49:37 +01:00
"build": "webpack",
"start": "webpack serve",
2017-01-09 21:24:12 +01:00
"lint": "eslint src --ext .js --ext .jsx --cache",
"test": "NODE_ENV=testing mocha --compilers js:babel-core/register test --recursive",
"check": "npm run lint && npm run test",
"release": "npm run lint && rm -rf build/* && NODE_ENV=production webpack --mode production",
2017-01-09 21:24:12 +01:00
"deploy": "npm run release && cp -r build/* docs/"
2016-11-11 19:47:20 +01:00
},
"keywords": [
"PDF",
"Markdown",
"Converter"
],
"author": "Johannes Zillmann",
"license": "AGPL-3.0",
2016-11-12 00:08:06 +01:00
"repository": {
"type": "git",
"url": "https://github.com/jzillmann/pdf-to-markdown"
},
2016-11-11 19:47:20 +01:00
"dependencies": {
2017-01-06 20:49:37 +01:00
"bootstrap": "^3.3.7",
"enumify": "^1.0.4",
2024-03-18 23:55:06 +01:00
"mini-css-extract-plugin": "^2.7.6",
"pdfjs-dist": "^2.8.335",
2017-02-05 23:21:36 +01:00
"rc-progress": "^2.0.6",
"react": "^15.4.2",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.4.2",
"react-dropzone": "^3.9.2",
2017-02-06 17:13:41 +01:00
"react-icons": "^2.2.3",
2017-03-29 08:15:39 +02:00
"react-overlays": "^0.6.12",
2017-02-06 17:13:41 +01:00
"remarkable": "^1.7.1"
2016-11-11 19:47:20 +01:00
},
"devDependencies": {
2024-03-18 23:55:06 +01:00
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
2017-02-05 23:21:36 +01:00
"babel-core": "^6.22.1",
"babel-eslint": "^10.1.0",
2024-03-18 23:55:06 +01:00
"babel-loader": "^8.x",
2017-02-05 23:21:36 +01:00
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-preset-stage-2": "^6.24.1",
"chai": "^3.5.0",
"copy-webpack-plugin": "^9.0.1",
2017-02-05 23:21:36 +01:00
"css-loader": "^0.26.1",
"esformatter-jsx": "^7.4.1",
"eslint": "^7.30.0",
"eslint-plugin-jasmine": "^2.2.0",
2024-03-18 23:55:06 +01:00
"eslint-plugin-react": "^7.x",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"mocha": "^3.2.0",
2017-01-06 20:49:37 +01:00
"style-loader": "^0.13.1",
2016-11-11 19:47:20 +01:00
"url-loader": "^0.5.7",
"webpack": "^5.42.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
2016-11-11 19:47:20 +01:00
}
}