-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
110 lines (110 loc) · 2.97 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "quick.db",
"version": "9.1.6",
"description": "An easy, non-locking, persistent better-sqlite3 wrapper designed to be easy to setup & utilize",
"main": "out/index.js",
"types": "out/index.d.ts",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@faker-js/faker": "^8.0.0",
"@types/better-sqlite3": "^7.4.2",
"@types/jest": "^29.0.0",
"@types/lodash": "^4.14.178",
"@types/pg": "^8.6.6",
"@types/write-file-atomic": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"dotenv": "^16.0.3",
"eslint": "^8.5.0",
"eslint-config-prettier": "^9.0.0",
"git-cliff": "^2.0.0",
"jest": "^29.3.1",
"lefthook": "^1.5.2",
"prettier": "^3.0.0",
"ts-jest": "^29.0.3",
"typedoc": "^0.25.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"better-sqlite3": "8.x || 9.x",
"cassandra-driver": "4.x",
"mongoose": "7.x || 8.x",
"mysql2": "3.x",
"pg": "8.x",
"write-file-atomic": "5.x"
},
"peerDependenciesMeta": {
"better-sqlite3": {
"optional": true
},
"mongoose": {
"optional": true
},
"mysql2": {
"optional": true
},
"pg": {
"optional": true
},
"write-file-atomic": {
"optional": true
},
"cassandra-driver": {
"optional": true
}
},
"dependencies": {
"lodash": "^4.17.21"
},
"exports": {
".": {
"default": "./out/index.js",
"types": "./out/index.d.ts"
},
"./*": {
"default": "./out/drivers/*.js",
"types": "./out/drivers/*.d.ts"
}
},
"scripts": {
"test:all": "jest --roots tests",
"test:integration": "jest --roots tests/integration",
"test:unit": "jest --roots tests/unit",
"test": "npm run test:unit",
"lint": "eslint --ext \".ts\" ./src",
"prettier": "prettier --write ./src",
"prettier:all": "prettier --write ./",
"docgen": "typedoc",
"build": "tsc",
"clean": "rm -rf ./out",
"prepublishOnly": "npm run lint && npm run build",
"prepare": "npm run build"
},
"lint-staged": {
"*.{ts}": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TrueXPixels/quick.db.git"
},
"keywords": [
"database",
"storing",
"values",
"easy",
"quick",
"sqlite",
"sqlite3",
"db"
],
"author": "TrueXPixels",
"license": "MIT",
"bugs": {
"url": "https://github.com/TrueXPixels/quick.db/issues"
},
"homepage": "https://quickdb.js.org"
}