-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 893 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
{
"name": "pg-then",
"version": "0.2.0",
"description": "pg-then: use pg by promise",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha -R spec -t 5000 test/*.js",
"test-cov": "istanbul cover node_modules/.bin/_mocha -- -R dot -t 5000 test/*.js",
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- -R dot -t 5000 test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/coderhaoxin/pg-then.git"
},
"files": [
"index.js"
],
"keywords": [
"postgre",
"promise",
"async",
"await",
"then"
],
"author": "haoxin",
"license": "MIT",
"bugs": {
"url": "https://github.com/coderhaoxin/pg-then/issues"
},
"homepage": "https://github.com/coderhaoxin/pg-then",
"devDependencies": {
"istanbul": "0",
"mocha": "2",
"pg": "4"
}
}