package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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.34.1",
  16. "@material/elevation": "^0.34.0",
  17. "@material/list": "^0.34.1",
  18. "@material/ripple": "^0.34.1",
  19. "@material/switch": "^0.34.0",
  20. "@material/tabs": "^0.34.1",
  21. "@material/textfield": "^0.34.1",
  22. "@material/theme": "^0.33.0",
  23. "@material/toolbar": "^0.34.1",
  24. "@material/typography": "^0.34.0",
  25. "marked": "^0.3.12",
  26. "mithril": "^1.1.6",
  27. "prismjs": "^1.9.0",
  28. "remark": "^8.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-core": "^6.26.0",
  35. "babel-preset-es2015": "^6.24.1",
  36. "csso": "^3.4.0",
  37. "iconv-lite": "^0.4.21",
  38. "mocha": "^4.1.0",
  39. "node-sass": "^4.7.2",
  40. "puppeteer": "^1.3.0",
  41. "rollup": "^0.53.4",
  42. "rollup-plugin-commonjs": "^8.2.6",
  43. "rollup-plugin-node-resolve": "^3.0.0",
  44. "uglify-js": "^3.3.5"
  45. },
  46. "bin": {},
  47. "main": "",
  48. "files": [],
  49. "scripts": {
  50. "test": "mocha --timeout 100000000 --slow 400",
  51. "debug": "mocha --inspect-brk --timeout 100000000",
  52. "build:mdc": "node build/mdc/",
  53. "build:prism": "node build/prism/"
  54. },
  55. "engines": {
  56. "node": ">=8.0.0",
  57. "npm": ">=5.0.0"
  58. }
  59. }