package.json
1 { 2 "name": "pg-protocol", 3 "version": "1.10.3", 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.7", 20 "@types/node": "^12.12.21", 21 "chai": "^4.2.0", 22 "chunky": "^0.0.0", 23 "mocha": "^10.5.2", 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": "8f8e7315e8f7c1bb01e98fdb41c8c92585510782" 45 }