-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.17 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
{
"name": "make-postgres-markdown",
"version": "1.1.0",
"description": "Builds Slate compatible markdown from a Postgres connection",
"author": "Caleb Brewer (caleb@cazzer.io)",
"repository": {
"type": "git",
"url": "git+https://github.com/cazzer/make-postgres-markdown.git"
},
"keywords": [
"shins",
"slate",
"swagger",
"openapi",
"api",
"documentation",
"docs",
"cli"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cazzer/make-postgres-markdown/issues"
},
"homepage": "https://github.com/cazzer/make-postgres-markdown#readme",
"main": "./lib/src/make-postgres-markdown",
"dependencies": {
"commander": "^2.11.0",
"debug": "^3.1.0",
"json2md": "^1.5.10",
"pg-structure": "^4.0.4"
},
"devDependencies": {
"@types/node": "^11.9.5",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"typescript": "^3.3.3333"
},
"scripts": {
"build": "tsc --pretty",
"lint": "eslint src/**/*.js",
"prepublish": "rm -rf ./lib && yarn build"
},
"bin": {
"make-postgres-markdown": "./lib/src/make-postgres-markdown.js"
}
}