-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.26 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
61
62
{
"name": "pg-testdb",
"version": "1.0.4",
"description": "Module for PostgreSQL tests inside temporary databases",
"main": "index.js",
"scripts": {
"istanbul": "istanbul cover node_modules/tape/bin/tape tests/test.js",
"coverage": "istanbul cover node_modules/tape/bin/tape tests/test.js && cat ./coverage/lcov.info | coveralls",
"test": "node tests/test.js"
},
"author": "Richard Wen",
"license": "MIT",
"dependencies": {
"pg": "^7.3.0",
"pgtools": "^0.3.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"moment": "^2.18.1",
"tape": "^4.8.0"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rrwen/pg-testdb.git"
},
"keywords": [
"easy",
"quick",
"isolated",
"temporary",
"temp",
"unit",
"test",
"testing",
"tap",
"promise",
"tape",
"postgres",
"pg",
"libpq",
"postgre",
"data",
"relational",
"database",
"db",
"rdbms",
"management",
"system",
"postgresql",
"createdb",
"dropdb",
"pgtools"
],
"bugs": {
"url": "https://github.com/rrwen/pg-testdb/issues"
},
"homepage": "https://github.com/rrwen/pg-testdb#readme"
}