package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "pg-connection-string",
  3. "version": "2.5.0",
  4. "description": "Functions for dealing with a PostgresSQL connection string",
  5. "main": "./index.js",
  6. "types": "./index.d.ts",
  7. "scripts": {
  8. "test": "istanbul cover _mocha && npm run check-coverage",
  9. "check-coverage": "istanbul check-coverage --statements 100 --branches 100 --lines 100 --functions 100",
  10. "coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/brianc/node-postgres.git",
  15. "directory": "packages/pg-connection-string"
  16. },
  17. "keywords": [
  18. "pg",
  19. "connection",
  20. "string",
  21. "parse"
  22. ],
  23. "author": "Blaine Bublitz <blaine@iceddev.com> (http://iceddev.com/)",
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/brianc/node-postgres/issues"
  27. },
  28. "homepage": "https://github.com/brianc/node-postgres/tree/master/packages/pg-connection-string",
  29. "devDependencies": {
  30. "chai": "^4.1.1",
  31. "coveralls": "^3.0.4",
  32. "istanbul": "^0.4.5",
  33. "mocha": "^7.1.2"
  34. },
  35. "files": [
  36. "index.js",
  37. "index.d.ts"
  38. ],
  39. "gitHead": "d45947938263bec30a1e3252452f04177b785f66"
  40. }