package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "pg-promise",
  3. "version": "11.10.2",
  4. "description": "PostgreSQL interface for Node.js",
  5. "main": "lib/index.js",
  6. "typings": "typescript/pg-promise.d.ts",
  7. "scripts": {
  8. "spelling": "cspell --config=.cspell.json \"**/*.{md,ts,js}\" --no-progress",
  9. "coverage": "istanbul cover ./node_modules/jasmine-node/bin/jasmine-node --captureExceptions test",
  10. "doc": "jsdoc -c ./jsdoc/jsdoc.js ./jsdoc/README.md -t ./jsdoc/templates/custom",
  11. "lint": "eslint ./lib ./test/*.js ./test/db --fix",
  12. "test": "jasmine-node --captureExceptions test",
  13. "test:init": "node test/db/init.js",
  14. "test:native": "jasmine-node test --config PG_NATIVE true",
  15. "tslint": "tslint ./typescript/*.ts"
  16. },
  17. "files": [
  18. "lib",
  19. "typescript"
  20. ],
  21. "homepage": "https://github.com/vitaly-t/pg-promise",
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/vitaly-t/pg-promise.git"
  25. },
  26. "bugs": {
  27. "url": "https://github.com/vitaly-t/pg-promise/issues",
  28. "email": "vitaly.tomilov@gmail.com"
  29. },
  30. "keywords": [
  31. "pg",
  32. "promise",
  33. "postgres"
  34. ],
  35. "author": {
  36. "name": "Vitaly Tomilov",
  37. "email": "vitaly.tomilov@gmail.com"
  38. },
  39. "license": "MIT",
  40. "engines": {
  41. "node": ">=14.0"
  42. },
  43. "dependencies": {
  44. "assert-options": "0.8.2",
  45. "pg": "8.13.1",
  46. "pg-minify": "1.6.5",
  47. "spex": "3.4.0"
  48. },
  49. "peerDependencies": {
  50. "pg-query-stream": "4.7.1"
  51. },
  52. "devDependencies": {
  53. "@eslint/js": "9.14.0",
  54. "@types/node": "22.9.0",
  55. "bluebird": "3.7.2",
  56. "coveralls": "3.1.1",
  57. "cspell": "8.16.0",
  58. "eslint": "9.14.0",
  59. "globals": "15.12.0",
  60. "istanbul": "0.4.5",
  61. "jasmine-node": "3.0.0",
  62. "jsdoc": "4.0.4",
  63. "JSONStream": "1.3.5",
  64. "tslint": "6.1.3",
  65. "typescript": "5.6.3"
  66. }
  67. }