bower.json 967 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "mocha",
  3. "homepage": "http://mocha.github.io/mocha",
  4. "description": "simple, flexible, fun test framework",
  5. "authors": [
  6. "TJ Holowaychuk <tj@vision-media.ca>",
  7. "Joshua Appelman <joshua@jbna.nl>",
  8. "Oleg Gaidarenko <markelog@gmail.com>",
  9. "Christoffer Hallas <christoffer.hallas@gmail.com>",
  10. "Christopher Hiller <chiller@badwing.com>",
  11. "Travis Jeffery <tj@travisjeffery.com>",
  12. "Johnathan Ong <me@jongleberry.com>",
  13. "Guillermo Rauch <rauchg@gmail.com>"
  14. ],
  15. "repository": {
  16. "type": "git",
  17. "url": "git://github.com/mochajs/mocha.git"
  18. },
  19. "main": [
  20. "mocha.js",
  21. "mocha.css"
  22. ],
  23. "ignore": [
  24. "bin",
  25. "editors",
  26. "images",
  27. "lib",
  28. "support",
  29. "test",
  30. ".gitignore",
  31. ".npmignore",
  32. ".travis.yml",
  33. "component.json",
  34. "index.js",
  35. "Makefile",
  36. "package.json"
  37. ],
  38. "keywords": [
  39. "mocha",
  40. "test",
  41. "bdd",
  42. "tdd",
  43. "tap"
  44. ],
  45. "license": "MIT"
  46. }