package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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.0",
  16. "@material/elevation": "^0.36.1",
  17. "@material/list": "^0.37.0",
  18. "@material/ripple": "^0.37.0",
  19. "@material/switch": "^0.36.1",
  20. "@material/tabs": "^0.37.0",
  21. "@material/textfield": "^0.37.0",
  22. "@material/theme": "^0.35.0",
  23. "@material/toolbar": "^0.37.0",
  24. "@material/typography": "^0.35.0",
  25. "marked": "^0.4.0",
  26. "mithril": "^1.1.6",
  27. "prismjs": "^1.15.0",
  28. "remark": "^9.0.0",
  29. "remark-frontmatter": "^1.2.0",
  30. "remark-html": "^7.0.0",
  31. "remark-slug": "^5.0.0"
  32. },
  33. "devDependencies": {
  34. "babel-cli": "^6.26.0",
  35. "babel-preset-env": "^1.7.0",
  36. "csso-cli": "^1.1.0",
  37. "iconv-lite": "^0.4.23",
  38. "mocha": "^5.2.0",
  39. "node-sass": "^4.9.0",
  40. "puppeteer": "^1.4.0",
  41. "rollup": "^0.62.0",
  42. "rollup-plugin-commonjs": "^9.1.3",
  43. "rollup-plugin-node-resolve": "^3.3.0"
  44. },
  45. "bin": {},
  46. "main": "",
  47. "files": [],
  48. "scripts": {
  49. "test": "mocha --timeout 100000000 --slow 400",
  50. "debug": "mocha --inspect-brk --timeout 100000000",
  51. "build:mdc": "./build/mdc/mdc.sh",
  52. "build:prism": "node build/prism/"
  53. },
  54. "engines": {
  55. "node": ">=8.0.0"
  56. }
  57. }