package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "karma-jasmine-html-reporter",
  3. "version": "1.7.0",
  4. "description": "A Karma plugin. Dynamically displays tests results at debug.html page",
  5. "main": "./src/index.js",
  6. "keywords": [
  7. "karma-plugin",
  8. "karma-reporter",
  9. "html"
  10. ],
  11. "scripts": {
  12. "build": "node build/build.js"
  13. },
  14. "repository": {
  15. "url": "https://github.com/dfederm/karma-jasmine-html-reporter"
  16. },
  17. "author": "",
  18. "contributors": [
  19. {
  20. "name": "David Federman",
  21. "url": "https://github.com/dfederm"
  22. },
  23. {
  24. "name": "Yudha Setiawan",
  25. "url": "https://github.com/yudhasetiawan"
  26. },
  27. {
  28. "name": "Brian Thompson",
  29. "url": "https://github.com/dachibro"
  30. },
  31. {
  32. "name": "protazy",
  33. "url": "https://github.com/protazy"
  34. },
  35. {
  36. "name": "footballencarta",
  37. "url": "https://github.com/footballencarta"
  38. },
  39. {
  40. "name": "PVermeer",
  41. "url": "https://github.com/PVermeer"
  42. }
  43. ],
  44. "peerDependencies": {
  45. "jasmine-core": ">=3.8",
  46. "karma": ">=0.9",
  47. "karma-jasmine": ">=1.1"
  48. },
  49. "license": "MIT",
  50. "devDependencies": {
  51. "chalk": "*",
  52. "jasmine-core": ">=3.8"
  53. },
  54. "readmeFilename": "README.md"
  55. }