-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1015 Bytes
/
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
{
"name": "jelly-db-engine",
"version": "0.0.3",
"description": "Engine for postgreSQL and MySQL databases",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"dbengine",
"engine",
"database",
"orm",
"postgres",
"mysql",
"mariadb"
],
"author": "pedroladeira",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepare": "npm run build",
"version": "git add -A src && git add README.md",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pedroladeira/db-engine.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/pedroladeira/db-engine/issues"
},
"homepage": "https://github.com/pedroladeira/db-engine#readme",
"devDependencies": {
"typescript": "^3.4.2"
},
"dependencies": {
"@types/mysql": "^2.15.5",
"@types/pg": "^7.4.14",
"pg": "^7.9.0"
},
"files": [
"lib/**/*"
]
}