-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"scripts": {
"build": "tsc",
"test": "ts-node-esm ./test/test.ts",
"publish": "npm publish --access public"
},
"name": "database-ssh-connection",
"version": "1.2.8",
"description": "query mysql via ssh connection",
"type": "module",
"private": false,
"devDependencies": {
"@types/node": "^18.15.11",
"@types/ssh2": "^1.11.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.8.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"mysql2": "^3.2.1"
},
"types": "index.d.ts",
"keywords": [
"ssh",
"ssh2",
"mysql"
],
"author": "Ashkan Farmanbar",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/MrAshFar/database-ssh-connection.git"
},
"bugs": {
"url": "https://github.com/MrAshFar/database-ssh-connection/issues"
},
"homepage": "https://github.com/MrAshFar/database-ssh-connection#readme",
"main": "./dist/index.js"
}