-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 827 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 827 Bytes
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
{
"name": "@salarizadi/sql3",
"version": "1.0.0",
"description": "A helpful SQLite3 wrapper providing fluent interface, transactions, and enhanced database operations",
"main": "SQL3.js",
"scripts": {
"test": "node SQL3.test.js"
},
"keywords": [
"sqlite",
"sqlite3",
"database",
"wrapper",
"query-builder",
"transaction",
"async",
"promise"
],
"author": {
"name": "Salar Izadi",
"url": "https://salarizadi.ir"
},
"license": "MIT",
"files": [
"SQL3.js",
"SQL3.test.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/salarizadi/sql3.git"
},
"bugs": {
"url": "https://github.com/salarizadi/sql3/issues"
},
"homepage": "https://github.com/salarizadi/sql3#readme",
"dependencies": {
"sqlite3": "^5.1.7"
}
}