-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.26 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.26 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
{
"name": "litejsondb",
"version": "2.2.0",
"description": "LiteJsonDB is a lightweight, local JSON database for Node.js. It provides a simple and intuitive API for managing JSON data. This package is a fork of the Python LiteJsonDB project, adapted for Node.js.",
"longDescription": "LiteJsonDB offers a minimalistic and effective solution for managing JSON data in Node.js applications. This Node.js version is inspired by the Python LiteJsonDB project and includes core functionalities for adding, editing, retrieving, and deleting data. Note that this project is still under development, with many features yet to be added.",
"main": "./src/index.js",
"scripts": {
"test": "node ./test/test.js"
},
"exports": {
".": "./src/index.js"
},
"keywords": [
"json",
"database",
"local",
"lite",
"nodejs"
],
"author": "Coding Team",
"license": "MIT",
"dependencies": {
"utf8": "3.0.0"
},
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codingtuto/LiteJsonDB-Node.git"
},
"bugs": {
"url": "https://github.com/codingtuto/LiteJsonDB-Node/issues"
},
"homepage": "https://github.com/codingtuto/LiteJsonDB-Node#readme"
}