-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 932 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
{
"name": "ts-json-db",
"version": "2.0.5",
"description": "A Node.js database using JSON file as storage. The result of requests are typed!",
"author": "Corentin Girard <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "tsc",
"build": "tsc"
},
"main": "dist/src/index.js",
"types": "dist/src/",
"files": [
"dist/src/",
"README.md",
"LICENSE"
],
"keywords": [
"node",
"database",
"json",
"typescript",
"typed",
"typing",
"db"
],
"repository": {
"type": "git",
"url": "https://github.com/Drarig29/ts-json-db.git"
},
"homepage": "https://github.com/Drarig29/ts-json-db",
"dependencies": {
"node-json-db": "^1.0.3"
},
"devDependencies": {
"@types/node": "^12.12.31",
"typescript": "^3.8.3"
}
}