forked from GerbenAaltink/alopex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 894 Bytes
/
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
{
"name": "alopex",
"version": "1.2.3",
"description": "Databases for lazy people.",
"main": "index.js",
"scripts": {
"test": "mocha",
"test-all": "docker-compose up --build --force-recreate",
"docs-watch": "watch -n 1 \"npm run docs\"",
"docs": "jsdoc -c .jsdoc.json *",
"standard": "standard \"*.js\" --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/GerbenAaltink/alopex.git"
},
"keywords": [
"dataset",
"sqlite",
"orm",
"database",
"sql",
"data",
"memory",
"cache",
"json",
"serialize",
"store",
"persistent",
"prototyping",
"backend"
],
"author": "Gerben Aaltink",
"license": "ISC",
"dependencies": {
"sqlite-async": "^1.0.12",
"sqlite3": "4.1.1"
},
"devDependencies": {
"jsdoc": "^3.6.4",
"mocha": "^7.1.2",
"standard": "^14.3.4"
}
}