12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- {
- "name": "pg-promise",
- "version": "11.10.2",
- "description": "PostgreSQL interface for Node.js",
- "main": "lib/index.js",
- "typings": "typescript/pg-promise.d.ts",
- "scripts": {
- "spelling": "cspell --config=.cspell.json \"**/*.{md,ts,js}\" --no-progress",
- "coverage": "istanbul cover ./node_modules/jasmine-node/bin/jasmine-node --captureExceptions test",
- "doc": "jsdoc -c ./jsdoc/jsdoc.js ./jsdoc/README.md -t ./jsdoc/templates/custom",
- "lint": "eslint ./lib ./test/*.js ./test/db --fix",
- "test": "jasmine-node --captureExceptions test",
- "test:init": "node test/db/init.js",
- "test:native": "jasmine-node test --config PG_NATIVE true",
- "tslint": "tslint ./typescript/*.ts"
- },
- "files": [
- "lib",
- "typescript"
- ],
- "homepage": "https://github.com/vitaly-t/pg-promise",
- "repository": {
- "type": "git",
- "url": "https://github.com/vitaly-t/pg-promise.git"
- },
- "bugs": {
- "url": "https://github.com/vitaly-t/pg-promise/issues",
- "email": "vitaly.tomilov@gmail.com"
- },
- "keywords": [
- "pg",
- "promise",
- "postgres"
- ],
- "author": {
- "name": "Vitaly Tomilov",
- "email": "vitaly.tomilov@gmail.com"
- },
- "license": "MIT",
- "engines": {
- "node": ">=14.0"
- },
- "dependencies": {
- "assert-options": "0.8.2",
- "pg": "8.13.1",
- "pg-minify": "1.6.5",
- "spex": "3.4.0"
- },
- "peerDependencies": {
- "pg-query-stream": "4.7.1"
- },
- "devDependencies": {
- "@eslint/js": "9.14.0",
- "@types/node": "22.9.0",
- "bluebird": "3.7.2",
- "coveralls": "3.1.1",
- "cspell": "8.16.0",
- "eslint": "9.14.0",
- "globals": "15.12.0",
- "istanbul": "0.4.5",
- "jasmine-node": "3.0.0",
- "jsdoc": "4.0.4",
- "JSONStream": "1.3.5",
- "tslint": "6.1.3",
- "typescript": "5.6.3"
- }
- }
|