package.json
1 { 2 "name": "pg-types", 3 "version": "2.2.0", 4 "description": "Query result type converters for node-postgres", 5 "main": "index.js", 6 "scripts": { 7 "test": "tape test/*.js | tap-spec && npm run test-ts", 8 "test-ts": "if-node-version '>= 8' tsd" 9 }, 10 "repository": { 11 "type": "git", 12 "url": "git://github.com/brianc/node-pg-types.git" 13 }, 14 "keywords": [ 15 "postgres", 16 "PostgreSQL", 17 "pg" 18 ], 19 "author": "Brian M. Carlson", 20 "license": "MIT", 21 "bugs": { 22 "url": "https://github.com/brianc/node-pg-types/issues" 23 }, 24 "homepage": "https://github.com/brianc/node-pg-types", 25 "devDependencies": { 26 "if-node-version": "^1.1.1", 27 "pff": "^1.0.0", 28 "tap-spec": "^4.0.0", 29 "tape": "^4.0.0", 30 "tsd": "^0.7.4" 31 }, 32 "dependencies": { 33 "pg-int8": "1.0.1", 34 "postgres-array": "~2.0.0", 35 "postgres-bytea": "~1.0.0", 36 "postgres-date": "~1.0.4", 37 "postgres-interval": "^1.1.0" 38 }, 39 "engines": { 40 "node": ">=4" 41 } 42 }