package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "markdown-viewer",
  3. "version": "0.0.0",
  4. "description": "Markdown Viewer / Browser Extension",
  5. "private": true,
  6. "keywords": [],
  7. "license": "MIT",
  8. "homepage": "https://github.com/simov/markdown-viewer",
  9. "author": "Simeon Velichkov <[email protected]> (https://simov.github.io)",
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/simov/markdown-viewer.git"
  13. },
  14. "dependencies": {
  15. "@material/button": "^0.37.1",
  16. "@material/ripple": "^0.37.1",
  17. "@material/switch": "^0.36.1",
  18. "@material/tabs": "^0.37.1",
  19. "@material/textfield": "^0.37.1",
  20. "marked": "^0.8.0",
  21. "mithril": "^1.1.6",
  22. "prismjs": "^1.17.1",
  23. "remark": "^11.0.2",
  24. "remark-breaks": "^1.0.3",
  25. "remark-frontmatter": "^1.3.2",
  26. "remark-html": "^10.0.0",
  27. "remark-slug": "^5.1.2"
  28. },
  29. "devDependencies": {
  30. "babel-cli": "^6.26.0",
  31. "babel-preset-env": "^1.7.0",
  32. "browserify": "^16.2.3",
  33. "csso-cli": "^2.0.2",
  34. "iconv-lite": "^0.4.24",
  35. "mocha": "^5.2.0",
  36. "node-sass": "^4.11.0",
  37. "puppeteer": "1.5.0",
  38. "rollup": "^1.1.0",
  39. "rollup-plugin-commonjs": "^9.2.0",
  40. "rollup-plugin-node-resolve": "^4.0.0",
  41. "terser": "^3.14.1",
  42. "uglify-js": "^3.6.0"
  43. },
  44. "bin": {},
  45. "main": "",
  46. "files": [],
  47. "scripts": {
  48. "test": "mocha --timeout 100000000 --slow 400",
  49. "debug": "mocha --inspect-brk --timeout 100000000",
  50. "build:mdc": "./build/mdc/mdc.sh",
  51. "build:prism": "node build/prism/",
  52. "build:remark": "./build/remark/build.sh",
  53. "build:themes": "./build/themes/themes.sh"
  54. },
  55. "engines": {
  56. "node": ">=8.0.0"
  57. }
  58. }