-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 938 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
45
46
47
48
{
"name": "mysql-ease",
"version": "1.0.4",
"description": "An easy-to-use MySQL query builder and executor for Node.js",
"main": "index.js",
"directories": {
"lib": "lib"
},
"dependencies": {
"mysql": "^2.18.1"
},
"scripts": {
"test": "npm jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harmochiky/mysql-ease.git"
},
"keywords": [
"MySQL",
"database",
"query",
"builder",
"SQL",
"NodeJs",
"Node",
"ORM",
"data",
"access",
"wrapper",
"simplified",
"CRUD",
"SQL queries",
"database operations",
"data manipulation",
"data retrieval",
"data management"
],
"author": "harmochiky",
"license": "ISC",
"bugs": {
"url": "https://github.com/harmochiky/mysql-ease/issues"
},
"homepage": "https://github.com/harmochiky/mysql-ease#readme",
"devDependencies": {
"jest": "^29.5.0"
}
}