forked from olalonde/pgtools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "pgtools",
"version": "0.3.0",
"description": "Pure Node.js implementation of PostgreSQL's createdb and dropdb tools",
"main": "index.js",
"dependencies": {
"bluebird": "^3.3.5",
"pg": "^8.4.0",
"pg-connection-string": "^2.4.0",
"yargs": "^5.0.0"
},
"bin": {
"createdbjs": "./createdb.js",
"dropdbjs": "./dropdb.js"
},
"devDependencies": {
"coveralls": "^2.11.12",
"nyc": "^11.0.3",
"standard-version": "^4.2.0"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "nyc node test.js",
"docker": "docker-compose up dbcreate && docker-compose up -d db",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olalonde/pgtools.git"
},
"keywords": [
"postgres",
"postrgresql",
"createdb",
"dropdb",
"knex"
],
"author": "Olivier Lalonde <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/olalonde/pgtools/issues"
},
"homepage": "https://github.com/olalonde/pgtools#readme"
}