package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "pg-connection-string",
  3. "version": "2.9.1",
  4. "description": "Functions for dealing with a PostgresSQL connection string",
  5. "main": "./index.js",
  6. "types": "./index.d.ts",
  7. "exports": {
  8. ".": {
  9. "types": "./index.d.ts",
  10. "import": "./esm/index.mjs",
  11. "require": "./index.js",
  12. "default": "./index.js"
  13. }
  14. },
  15. "scripts": {
  16. "test": "nyc --reporter=lcov mocha && npm run check-coverage",
  17. "check-coverage": "nyc check-coverage --statements 100 --branches 100 --lines 100 --functions 100"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git://github.com/brianc/node-postgres.git",
  22. "directory": "packages/pg-connection-string"
  23. },
  24. "keywords": [
  25. "pg",
  26. "connection",
  27. "string",
  28. "parse"
  29. ],
  30. "author": "Blaine Bublitz <blaine@iceddev.com> (http://iceddev.com/)",
  31. "license": "MIT",
  32. "bugs": {
  33. "url": "https://github.com/brianc/node-postgres/issues"
  34. },
  35. "homepage": "https://github.com/brianc/node-postgres/tree/master/packages/pg-connection-string",
  36. "devDependencies": {
  37. "@types/pg": "^8.12.0",
  38. "chai": "^4.1.1",
  39. "coveralls": "^3.0.4",
  40. "istanbul": "^0.4.5",
  41. "mocha": "^10.5.2",
  42. "nyc": "^15",
  43. "tsx": "^4.19.4",
  44. "typescript": "^4.0.3"
  45. },
  46. "files": [
  47. "index.js",
  48. "index.d.ts",
  49. "esm"
  50. ],
  51. "gitHead": "cd877a57612a39335a97b593111710d26126279d"
  52. }