package.json 929 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "pg-monitor",
  3. "version": "2.1.0",
  4. "description": "Event monitor for pg-promise.",
  5. "main": "lib/index.js",
  6. "typings": "typescript/pg-monitor.d.ts",
  7. "scripts": {
  8. "test": "jasmine-node test",
  9. "lint": "eslint ./lib ./test/*.js ./test/events"
  10. },
  11. "files": [
  12. "lib",
  13. "typescript"
  14. ],
  15. "homepage": "https://github.com/vitaly-t/pg-monitor",
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/vitaly-t/pg-monitor.git"
  19. },
  20. "bugs": {
  21. "url": "https://github.com/vitaly-t/pg-monitor/issues"
  22. },
  23. "keywords": [
  24. "pg-promise",
  25. "monitor",
  26. "node-postgres"
  27. ],
  28. "author": {
  29. "name": "Vitaly Tomilov",
  30. "email": "vitaly.tomilov@gmail.com"
  31. },
  32. "license": "MIT",
  33. "engines": {
  34. "node": ">=14"
  35. },
  36. "dependencies": {
  37. "cli-color": "2.0.4"
  38. },
  39. "devDependencies": {
  40. "eslint": "8.57.0",
  41. "jasmine-node": "3.0.0",
  42. "typescript": "5.4.4"
  43. }
  44. }