-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "pg-util",
"version": "1.3.1",
"description": "postgresql utils - using promises and the async and await functionality",
"main": "lib/util.js",
"scripts": {
"test": "mocha --require mocha-babel src/test.js",
"compile": "babel --stage 0 --optional runtime -d lib/ src/",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lalitkapoor/node-pg-util.git"
},
"keywords": [
"postgresql",
"postgres",
"es6",
"es7",
"async",
"await"
],
"author": "Lalit Kapoor <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lalitkapoor/node-pg-util/issues"
},
"homepage": "https://github.com/lalitkapoor/node-pg-util#readme",
"dependencies": {
"babel-runtime": "^5.8.24",
"querybox": "lalitkapoor/node-querybox#v1.0.0"
},
"devDependencies": {
"app-root-path": "^1.0.0",
"babel": "^5.8.23",
"mocha": "^2.3.2",
"pg.js": "^4.1.1",
"should": "^7.1.0"
}
}