Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
pg-promise/package.json
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
60 lines (60 sloc)
1.69 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "pg-promise", | |
"version": "8.1.1", | |
"description": "Promises interface for PostgreSQL", | |
"main": "lib/index.js", | |
"typings": "typescript/pg-promise.d.ts", | |
"scripts": { | |
"test": "jasmine-node test", | |
"test:native": "jasmine-node test --config PG_NATIVE true", | |
"doc": "./node_modules/.bin/jsdoc -c ./jsdoc/jsdoc.js ./jsdoc/README.md -t ./jsdoc/templates/custom", | |
"coverage": "istanbul cover ./node_modules/jasmine-node/bin/jasmine-node test", | |
"travis": "npm run lint && istanbul cover ./node_modules/jasmine-node/bin/jasmine-node test --captureExceptions && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage", | |
"lint": "./node_modules/.bin/eslint ./lib ./test/*.js ./test/db" | |
}, | |
"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": ">=4.5", | |
"npm": ">=2.15" | |
}, | |
"dependencies": { | |
"manakin": "~0.5.1", | |
"pg": "~7.4.1", | |
"pg-minify": "~0.5.4", | |
"spex": "~2.0.2" | |
}, | |
"devDependencies": { | |
"@types/node": "~9.4.6", | |
"JSONStream": "~1.3.2", | |
"bluebird": "~3.5.1", | |
"coveralls": "~3.0.0", | |
"eslint": "~4.18.1", | |
"istanbul": "~0.4.5", | |
"jasmine-node": "~1.14.5", | |
"jsdoc": "~3.5.5", | |
"pg-query-stream": "~1.1.1", | |
"typescript": "~2.7.2" | |
} | |
} |