package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "pgpass",
  3. "version": "1.0.5",
  4. "description": "Module for reading .pgpass",
  5. "main": "lib/index",
  6. "scripts": {
  7. "pretest": "chmod 600 ./test/_pgpass",
  8. "_hint": "jshint --exclude node_modules --verbose lib test",
  9. "_test": "mocha --recursive -R list",
  10. "_covered_test": "nyc --reporter html --reporter text \"$npm_execpath\" run _test",
  11. "test": "\"$npm_execpath\" run _hint && \"$npm_execpath\" run _covered_test"
  12. },
  13. "author": "Hannes Hörl <hannes.hoerl+pgpass@snowreporter.com>",
  14. "license": "MIT",
  15. "dependencies": {
  16. "split2": "^4.1.0"
  17. },
  18. "devDependencies": {
  19. "jshint": "^2.12.0",
  20. "mocha": "^8.2.0",
  21. "nyc": "^15.1.0",
  22. "pg": "^8.4.1",
  23. "pg-escape": "^0.2.0",
  24. "pg-native": "3.0.0",
  25. "resumer": "0.0.0",
  26. "tmp": "^0.2.1",
  27. "which": "^2.0.2"
  28. },
  29. "keywords": [
  30. "postgres",
  31. "pg",
  32. "pgpass",
  33. "password",
  34. "postgresql"
  35. ],
  36. "bugs": "https://github.com/hoegaarden/pgpass/issues",
  37. "repository": {
  38. "type": "git",
  39. "url": "https://github.com/hoegaarden/pgpass.git"
  40. }
  41. }