-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 912 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
41
42
43
44
45
46
47
{
"name": "pg-db",
"version": "2.0.0",
"description": "Transactions, named parameters, and more for node-postgres",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sehrope/node-pg-db.git"
},
"author": {
"name": "Sehrope Sarkuni",
"email": "sehrope@jackdb.com"
},
"keywords": [
"pg",
"transaction",
"postgres",
"tx",
"database",
"db"
],
"main": "lib/index.js",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"build": "make build",
"test": "make test"
},
"dependencies": {
"async": "^0.9",
"rand-token": "^0.4.0"
},
"peerDependencies": {
"pg": ">= 7"
},
"devDependencies": {
"chai": "^1.10",
"coffee-coverage": "^0.4.2",
"coffeescript": "^1.8.0",
"coffeelint": "^1.6.1",
"jscoverage": "^0.5.9",
"mocha": "^2.0.1",
"opn": "^1.0.1",
"pg": "^7"
}
}