-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.04 KB
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
{
"dependencies": {
"got": "^12.1.0",
"np": "^7.6.2",
"sqlite3": "^5.0.9",
"synchronized-promise": "^0.3.1",
"tsd-jsdoc": "^2.5.0"
},
"types": "./types/promisesql.d.ts",
"name": "promisesql",
"description": "A [node-sqlite3](https://www.npmjs.com/package/sqlite3) wrapper for running simple, promise-based database queries in Node.js. It works best in smaller projects with a lot of asynchronous development, e.g., a Discord bot that implements slash commands.",
"version": "1.2.11",
"main": "./src/promisesql.js",
"directories": {
"lib": "lib"
},
"devDependencies": {
"@types/sqlite3": "^3.1.8",
"jest": "^28.1.3"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akrouk/PromiseSQL.git"
},
"keywords": [
"node-sqlite3",
"sqlite3",
"node.js",
"sql"
],
"author": "AJK",
"license": "MIT",
"bugs": {
"url": "https://github.com/akrouk/PromiseSQL/issues"
},
"homepage": "https://github.com/akrouk/PromiseSQL#readme"
}