forked from WowoEngine/SawitDB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.43 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
61
62
63
{
"name": "@wowoengine/sawitdb",
"publishConfig": {
"access": "public"
},
"version": "2.5.0",
"description": "A networked document database with Indonesian Agricultural Query Language (AQL) - Network Edition",
"main": "src/WowoEngine.js",
"scripts": {
"start": "node bin/sawit-server.js",
"server": "node bin/sawit-server.js",
"test": "node tests/test_server_injection.js",
"example": "node examples/example_client.js",
"cli": "node cli/remote.js sawitdb://localhost:7878/default",
"dev": "SAWIT_LOG_LEVEL=debug node bin/sawit-server.js"
},
"keywords": [
"database",
"database-engine",
"database-server",
"database-client",
"database-remote",
"database-local",
"database-embedded",
"database-single-file",
"database-binary",
"database-file",
"sawitdb",
"wowoengine",
"wowoengine/sawitdb",
"document-database",
"nosql",
"json",
"btree",
"indexing",
"tcp-server",
"networking",
"agricultural",
"indonesian",
"mongodb-like",
"embedded-database"
],
"author": "SawitDB Community",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/WowoEngine/SawitDB.git"
},
"engines": {
"node": ">=12.0.0"
},
"bin": {
"sawitdb-server": "bin/sawit-server.js",
"sawitdb-cli": "cli/remote.js"
},
"files": [
"src/",
"bin/",
"cli/",
"docs/",
"README.md"
]
}