-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.4 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
{
"name": "db2md-cli",
"version": "0.0.5",
"packageManager": "pnpm@7.15.0",
"description": "database to markdown tool",
"bin": {
"db2md": "bin/db2md.js"
},
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"start": "node bin/db2md.js",
"lint": "eslint {lib,bin,actions,commands}/**/*.ts --fix",
"clean": "rimraf {lib,bin,actions,commands}/**/*.{js,d.ts,js.map,d.ts.map}",
"publish:npm": "npm publish"
},
"keywords": [
"cli",
"cli-app",
"mysql",
"markdown",
"docx",
"word"
],
"bugs": {
"url": "https://github.com/hackycy/db2md-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hackycy/db2md-cli.git"
},
"homepage": "https://github.com/hackycy/db2md-cli#readme",
"author": "hackycy",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.2.5",
"@types/node": "^16.14.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
},
"dependencies": {
"commander": "^9.4.1",
"docx": "^7.7.0",
"fs-extra": "^10.1.0",
"inquirer": "^8.2.5",
"mysql2": "^2.3.3"
}
}