-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.65 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.65 KB
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
{
"name": "pg-doc",
"version": "0.2.2",
"description": "Produce schema documentation for your Postgres database in markdown format",
"scripts": {
"db:create": "NODE_ENV=admin node node_modules/knex/bin/cli.js --knexfile ./test/knexfile.js migrate:latest",
"db:migrate": "NODE_ENV=test node node_modules/knex/bin/cli.js --knexfile ./test/knexfile.js migrate:latest",
"db:drop": "NODE_ENV=admin node node_modules/knex/bin/cli.js --knexfile ./test/knexfile.js migrate:rollback --all",
"pretest": "npm run db:create; npm run db:migrate; eslint .",
"posttest": "npm run db:drop; nyc check-coverage",
"test": "nyc mocha"
},
"bin": {
"pg-doc": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/echetzakis/pg-doc.git"
},
"keywords": [
"postgres",
"markdown",
"database",
"documentation"
],
"author": {
"name": "Eleftherios Chetzakis",
"email": "elchetz@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/echetzakis/pg-doc/issues"
},
"homepage": "https://github.com/echetzakis/pg-doc#readme",
"dependencies": {
"knex": "^2.4.2",
"pg": "^8.8.0",
"time-span": "^4.0.0",
"yargs": "^17.6.2"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^10.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"require-directory": "^2.1.1",
"should": "^13.2.3",
"sinon": "^15.0.1"
}
}