package.json
1.68 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "quick.db",
"version": "9.0.2",
"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",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@faker-js/faker": "^6.1.2",
"babel-jest": "^27.4.5",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"better-sqlite3": "^7.4.5",
"promise-mysql": "^5.0.4",
"@types/better-sqlite3": "^7.4.2",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.178",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"typescript": "^4.5.4"
},
"dependencies": {
"lodash": "^4.17.21"
},
"scripts": {
"test": "jest --roots tests",
"lint": "eslint --ext \".ts\" ./src",
"prettier": "prettier --write ./src",
"prepare": "husky install",
"prepublishOnly": "tsc"
},
"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"
}