package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "pg-protocol",
  3. "version": "1.13.0",
  4. "description": "The postgres client/server binary protocol, implemented in TypeScript",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "exports": {
  8. ".": {
  9. "import": "./esm/index.js",
  10. "require": "./dist/index.js",
  11. "default": "./dist/index.js"
  12. },
  13. "./dist/*": "./dist/*.js",
  14. "./dist/*.js": "./dist/*.js"
  15. },
  16. "license": "MIT",
  17. "devDependencies": {
  18. "@types/chai": "^4.2.7",
  19. "@types/mocha": "^10.0.10",
  20. "@types/node": "^12.12.21",
  21. "chai": "^4.2.0",
  22. "chunky": "^0.0.0",
  23. "mocha": "^11.7.5",
  24. "ts-node": "^8.5.4",
  25. "typescript": "^4.0.3"
  26. },
  27. "scripts": {
  28. "test": "mocha dist/**/*.test.js",
  29. "build": "tsc",
  30. "build:watch": "tsc --watch",
  31. "prepublish": "yarn build",
  32. "pretest": "yarn build"
  33. },
  34. "repository": {
  35. "type": "git",
  36. "url": "git://github.com/brianc/node-postgres.git",
  37. "directory": "packages/pg-protocol"
  38. },
  39. "files": [
  40. "/dist/*{js,ts,map}",
  41. "/src",
  42. "/esm"
  43. ],
  44. "gitHead": "c9070cc8d526fca65780cedc25c1966b57cf7532"
  45. }