-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.44 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "xen.db",
"version": "4.0.3",
"description": "An Open-Source Asynchronous NodeJS Database Driver",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/helloreindev/xen.db.git"
},
"scripts": {
"build": "tsc",
"lint": "eslint --ext \".ts\" --ignore-path .gitignore . && prettier --check .",
"lint:fix": "eslint --ext \".ts\" --ignore-path .gitignore . --fix && prettier --write --list-different ."
},
"keywords": [
"db",
"database",
"persistent",
"nodejs",
"promise-mysql",
"better-sqlite3",
"mysql",
"sqlite",
"sql",
"xen.db",
"sqlite3"
],
"author": "Reinhardt",
"license": "MIT",
"bugs": {
"url": "https://github.com/helloreindev/xen.db/issues"
},
"homepage": "https://xendb.js.org",
"dependencies": {
"lodash": "^4.17.21",
"tslib": "^2.4.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.2",
"@types/lodash": "^4.14.189",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"better-sqlite3": "^7.6.2",
"eslint": "^8.27.0",
"eslint-plugin-sort-class-members": "^1.15.2",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"mongoose": "^6.7.2",
"prettier": "^2.7.1",
"promise-mysql": "^5.2.0",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.7.4"
}
}