-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1008 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
45
46
{
"name": "@datasco/memorydb",
"version": "1.4.0",
"description": "In-memory database with Queries, Event-handling, Analytics written in TypeScript",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"serve": "nodemon",
"build": "npx tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qrai/MemoryDB.git"
},
"keywords": [
"database",
"in-memory",
"memory",
"store",
"queries",
"analytics"
],
"author": "qrai",
"license": "ISC",
"bugs": {
"url": "https://github.com/qrai/MemoryDB/issues"
},
"homepage": "https://github.com/qrai/MemoryDB#readme",
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"jest": "^29.0.3",
"nodemon": "^2.0.20",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"dependencies": {
"compress-json": "^2.1.2",
"csv-parser": "^3.0.0"
}
}