-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 992 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
{
"name": "file-system-db",
"version": "2.1.0",
"description": "A simple, lightweight, synchronous, database for Node.js powered by JSON.",
"keywords": [
"database",
"db",
"file-based",
"fs",
"json",
"local",
"node",
"nodejs",
"storage"
],
"bugs": "https://github.com/WillTDA/File-System-DB/issues",
"license": "Apache-2.0",
"author": "WillTDA",
"funding": {
"type": "buymecoffee",
"url": "https://www.buymeacoffee.com/willtda"
},
"files": [
"index.d.ts*"
],
"main": "index.js",
"types": "index.d.ts",
"repository": "github:WillTDA/File-System-DB",
"scripts": {
"prepare": "tsc",
"pretest": "npm pack && npm install --no-save *.tgz",
"test": "mocha .",
"prepublishOnly": "prettier --write . '!package-lock.json'"
},
"devDependencies": {
"@tsconfig/node18": "^18",
"@types/mocha": "^10",
"@types/node": "^18",
"mocha": "^10",
"prettier": "^3",
"typescript": "^5"
}
}