pdf-to-markdown/package.json

56 lines
1.5 KiB
JSON
Raw Normal View History

2016-11-11 19:47:20 +01:00
{
"name": "pdf-to-markdown",
"version": "0.0.1",
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": {
"watch": "webpack -d --watch",
2017-01-06 20:49:37 +01:00
"build": "webpack",
2017-01-09 21:24:12 +01:00
"lint": "eslint src --ext .js --ext .jsx --cache",
"release": "npm run lint && rm -rf build/* && NODE_ENV=production webpack -p",
"deploy": "npm run release && cp -r build/* docs/"
2016-11-11 19:47:20 +01:00
},
"keywords": [
"PDF",
"Markdown",
"Converter"
],
"author": "Johannes Zillmann",
2017-01-06 20:49:37 +01:00
"license": "Apache-2.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",
2016-11-12 00:31:06 +01:00
"pdfjs-dist": "^1.6.317",
2017-01-09 20:08:32 +01:00
"rc-progress": "^2.0.5",
2017-01-06 20:49:37 +01:00
"react": "^15.3.2",
"react-bootstrap": "^0.30.3",
"react-dom": "^15.3.2",
"react-dropzone": "^3.6.0",
"react-icons": "^2.2.1"
2016-11-11 19:47:20 +01:00
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
2017-01-06 20:49:37 +01:00
"babel-preset-react": "^6.16.0",
2016-11-11 19:47:20 +01:00
"babel-preset-stage-0": "^6.16.0",
2017-01-06 20:49:37 +01:00
"copy-webpack-plugin": "^4.0.1",
2016-11-11 19:47:20 +01:00
"css-loader": "^0.25.0",
2017-01-06 20:49:37 +01:00
"esformatter-jsx": "^7.0.1",
"eslint": "^3.7.0",
"eslint-plugin-react": "^6.3.0",
"extract-text-webpack-plugin": "^1.0.1",
2016-11-11 19:47:20 +01:00
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
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": "^1.13.3"
}
}