forked from klarna-incubator/postgres-to-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.18 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
{
"name": "@klarna/postgres-to-docs",
"version": "3.0.1",
"description": "The smooth way to document your Postgres database",
"main": "./dist/index.js",
"bin": {
"postgres-to-docs": "./dist/cli.js"
},
"scripts": {
"test": "docker-compose up -d && sleep 5 && jest ./src --passWithNoTests && docker-compose down",
"start:dev": "ts-node -P ./tsconfig.json ./src/cli.ts",
"build": "tsc -p ./tsconfig.json",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/klarna-incubator/postgres-to-docs.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/klarna-incubator/postgres-to-docs/issues"
},
"homepage": "https://github.com/klarna-incubator/postgres-to-docs#readme",
"dependencies": {
"dotenv": "^16.3.1",
"elm-decoders": "^6.0.1",
"json2md": "^1.10.0",
"pg": "^8.5.1"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.21",
"@types/json2md": "^1.5.0",
"@types/pg": "^7.14.11",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"@types/node": "^18.15.0"
}
}