package.json 880 B

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