-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 920 Bytes
/
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
{
"name": "postgres-uno",
"version": "2.0.1",
"description": "An ES6 Class for connecting to Postgresql with a single connection",
"main": "lib/postgres-uno.js",
"directories": {
"lib": "./lib",
"doc": "./doc",
"example": "./example"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --ui bdd test",
"generate-docs": "node_modules/.bin/jsdoc lib/ --destination doc"
},
"keywords": [
"postgres",
"postgresql",
"single connection",
"class",
"es6",
"node-postgres"
],
"author": "Bill Hodges",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wildbillh/postgres-uno"
},
"dependencies": {
"pg": "^8.5.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"jsdoc": "^3.6.2",
"jsdoc-to-markdown": "^5.0.0",
"mocha": "^6.1.4",
"sinon": "^7.3.2"
}
}