package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "pg-pool",
  3. "version": "3.10.1",
  4. "description": "Connection pool for node-postgres",
  5. "main": "index.js",
  6. "exports": {
  7. ".": {
  8. "import": "./esm/index.mjs",
  9. "require": "./index.js",
  10. "default": "./index.js"
  11. }
  12. },
  13. "directories": {
  14. "test": "test"
  15. },
  16. "scripts": {
  17. "test": " node_modules/.bin/mocha"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git://github.com/brianc/node-postgres.git",
  22. "directory": "packages/pg-pool"
  23. },
  24. "keywords": [
  25. "pg",
  26. "postgres",
  27. "pool",
  28. "database"
  29. ],
  30. "author": "Brian M. Carlson",
  31. "license": "MIT",
  32. "bugs": {
  33. "url": "https://github.com/brianc/node-pg-pool/issues"
  34. },
  35. "homepage": "https://github.com/brianc/node-pg-pool#readme",
  36. "devDependencies": {
  37. "bluebird": "3.7.2",
  38. "co": "4.6.0",
  39. "expect.js": "0.3.1",
  40. "lodash": "^4.17.11",
  41. "mocha": "^10.5.2"
  42. },
  43. "peerDependencies": {
  44. "pg": ">=8.0"
  45. },
  46. "files": [
  47. "index.js",
  48. "esm"
  49. ],
  50. "gitHead": "cd877a57612a39335a97b593111710d26126279d"
  51. }