package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "pg-promise",
  3. "version": "11.5.4",
  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.1",
  45. "pg": "8.11.3",
  46. "pg-minify": "1.6.3",
  47. "spex": "3.3.0"
  48. },
  49. "devDependencies": {
  50. "@types/node": "20.5.2",
  51. "bluebird": "3.7.2",
  52. "coveralls": "3.1.1",
  53. "cspell": "7.0.1",
  54. "eslint": "8.47.0",
  55. "istanbul": "0.4.5",
  56. "jasmine-node": "3.0.0",
  57. "jsdoc": "4.0.2",
  58. "JSONStream": "1.3.5",
  59. "pg-query-stream": "4.5.3",
  60. "tslint": "6.1.3",
  61. "typescript": "5.1.6"
  62. }
  63. }