forked from eslachance/enmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·48 lines (48 loc) · 1.13 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
{
"name": "enmap",
"version": "5.8.7",
"description": "A simple database wrapper to make sqlite database interactions much easier for beginners, with additional array helper methods.",
"main": "src/index.js",
"scripts": {
"test": "jest",
"docs": "node ./docs/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eslachance/enmap.git"
},
"bugs": {
"url": "https://github.com/eslachance/enmap/issues"
},
"homepage": "https://enmap.evie.dev/",
"keywords": [
"sqlite",
"sql",
"sqlite3",
"better-sqlite3",
"db",
"database",
"caching",
"storing",
"easy",
"quick",
"simple",
"wrapper"
],
"author": "Evelyne Lachance <[email protected]> (https://evie.codes/)",
"license": "Apache-2.0",
"dependencies": {
"better-sqlite3": "^7.1.0",
"lodash": "^4.17.20",
"on-change": "^2.0.1",
"serialize-javascript": "^5.0.1"
},
"devDependencies": {
"eslint": "^7.4.0",
"eslint-config-prettier": "^8.1.0",
"jest": "^26.1.0",
"jsdoc-to-markdown": "^6.0.1",
"limax": "^2.1.0"
},
"types": "./typings/index.d.ts"
}