package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "showdown",
  3. "version": "0.3.4",
  4. "author": "John Fraser",
  5. "contributors": [
  6. "John Gruber",
  7. "John Fraser",
  8. "Corey Innis",
  9. "Remy Sharp",
  10. "Konstantin Käfer",
  11. "Roger Braun",
  12. "Dominic Tarr",
  13. "Cat Chen",
  14. "Titus Stone",
  15. "Rob Sutherland",
  16. "Pavel Lang",
  17. "Ben Combee",
  18. "Adam Backstrom",
  19. "Pascal Deschênes",
  20. "Estevão Santos"
  21. ],
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/showdownjs/showdown.git",
  25. "web": "https://github.com/showdownjs/showdown"
  26. },
  27. "licenses": [
  28. {
  29. "type": "BSD",
  30. "url": "https://github.com/coreyti/showdown/raw/master/license.txt"
  31. }
  32. ],
  33. "main": "./src/showdown",
  34. "scripts": {
  35. "test": "mocha ./test/run.js"
  36. },
  37. "devDependencies": {
  38. "angular": "^1.3.2",
  39. "grunt": "^0.4.5",
  40. "grunt-contrib-concat": "^0.5.0",
  41. "grunt-contrib-jshint": "^0.10.0",
  42. "grunt-contrib-uglify": "^0.6.0",
  43. "grunt-simple-mocha": "^0.4.0",
  44. "mocha": "*",
  45. "should": "^4.4.2"
  46. }
  47. }