package.json 780 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "reveal.js",
  3. "version": "2.3.0",
  4. "description": "The HTML Presentation Framework",
  5. "homepage": "http://lab.hakim.se/reveal-js",
  6. "author": {
  7. "name": "Hakim El Hattab",
  8. "email": "hakim.elhattab@gmail.com",
  9. "web": "http://hakim.se"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/hakimel/reveal.js.git"
  14. },
  15. "engines": {
  16. "node": "~0.8.0"
  17. },
  18. "scripts": {
  19. "test": "grunt jshint"
  20. },
  21. "dependencies": {
  22. "underscore": "~1.3.3",
  23. "express": "~2.5.9",
  24. "socket.io": "~0.9.6",
  25. "mustache": "~0.4.0"
  26. },
  27. "devDependencies": {
  28. "grunt-contrib-jshint": "~0.2.0",
  29. "grunt-contrib-cssmin": "~0.4.1",
  30. "grunt-contrib-uglify": "~0.1.1",
  31. "grunt-contrib-watch": "~0.2.0",
  32. "grunt": "~0.4.0"
  33. }
  34. }