forked from vitaly-t/pg-promise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "pg-promise",
"version": "5.9.3",
"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.json ./jsdoc/README.md",
"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": "[email protected]"
},
"keywords": [
"pg",
"promise",
"postgres"
],
"author": {
"name": "Vitaly Tomilov",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=4.0",
"npm": ">=2.15"
},
"dependencies": {
"manakin": "^0.4.7",
"pg": "^5.1.0",
"pg-minify": "0.4",
"spex": "1.2"
},
"devDependencies": {
"@types/node": "7.0",
"JSONStream": "1.3",
"bluebird": "3.5",
"coveralls": "2.11",
"eslint": "^4.0.0",
"istanbul": "0.4",
"jasmine-node": "1.14",
"jsdoc": "3.4",
"pg-query-stream": "1.x",
"typescript": "2.3"
}
}