package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "pg-protocol",
  3. "version": "1.10.2",
  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/*": {
  14. "import": "./dist/*",
  15. "require": "./dist/*",
  16. "default": "./dist/*"
  17. }
  18. },
  19. "license": "MIT",
  20. "devDependencies": {
  21. "@types/chai": "^4.2.7",
  22. "@types/mocha": "^10.0.7",
  23. "@types/node": "^12.12.21",
  24. "chai": "^4.2.0",
  25. "chunky": "^0.0.0",
  26. "mocha": "^10.5.2",
  27. "ts-node": "^8.5.4",
  28. "typescript": "^4.0.3"
  29. },
  30. "scripts": {
  31. "test": "mocha dist/**/*.test.js",
  32. "build": "tsc",
  33. "build:watch": "tsc --watch",
  34. "prepublish": "yarn build",
  35. "pretest": "yarn build"
  36. },
  37. "repository": {
  38. "type": "git",
  39. "url": "git://github.com/brianc/node-postgres.git",
  40. "directory": "packages/pg-protocol"
  41. },
  42. "files": [
  43. "/dist/*{js,ts,map}",
  44. "/src",
  45. "/esm"
  46. ],
  47. "gitHead": "1a25d128177dd7c54dc4652bbb92ac7986306e3f"
  48. }