package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "youch",
  3. "version": "3.2.3",
  4. "description": "HTML Pretty error stack viewer",
  5. "main": "src/Youch.js",
  6. "files": [
  7. "src",
  8. "index.d.ts"
  9. ],
  10. "types": "./index.d.ts",
  11. "directories": {
  12. "example": "examples"
  13. },
  14. "scripts": {
  15. "pretest": "npm run lint",
  16. "prepublishOnly": "npm run build",
  17. "build": "node bin/compile.js",
  18. "test": "npm run build && node test/youch.spec.js && node test/youch.spec.mjs",
  19. "lint": "standard"
  20. },
  21. "author": "amanvirk",
  22. "license": "MIT",
  23. "devDependencies": {
  24. "concat": "^1.0.3",
  25. "cz-conventional-changelog": "^3.3.0",
  26. "japa": "^4.0.0",
  27. "standard": "^17.0.0",
  28. "supertest": "^6.3.3",
  29. "uglify-js": "^3.17.4"
  30. },
  31. "config": {
  32. "commitizen": {
  33. "path": "./node_modules/cz-conventional-changelog"
  34. }
  35. },
  36. "dependencies": {
  37. "cookie": "^0.5.0",
  38. "mustache": "^4.2.0",
  39. "stacktracey": "^2.1.8"
  40. },
  41. "repository": {
  42. "type": "git",
  43. "url": "git+https://github.com/poppinss/youch.git"
  44. },
  45. "keywords": [
  46. "errors",
  47. "error-reporting",
  48. "whoops"
  49. ],
  50. "bugs": {
  51. "url": "https://github.com/poppinss/youch/issues"
  52. },
  53. "standard": {
  54. "ignore": [
  55. "static"
  56. ]
  57. },
  58. "homepage": "https://github.com/poppinss/youch#readme"
  59. }