forked from adiwajshing/keyed-db
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 798 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 798 Bytes
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
{
"name": "@adiwajshing/keyed-db",
"version": "0.2.4",
"description": "Lightweight library to store an in-memory DB",
"homepage": "https://github.com/adiwajshing/keyed-db",
"main": "lib/KeyedDB.js",
"types": "lib/KeyedDB.d.ts",
"keywords": [
"db",
"key"
],
"scripts": {
"prepack": "npm run build",
"test": "mocha --timeout 60000 -r ts-node/register src/Tests.ts",
"build": "tsc"
},
"author": "Adhiraj Singh",
"license": "MIT",
"repository": {
"url": "git@github.com:adiwajshing/keyed-db.git"
},
"files": [
"lib/*"
],
"dependencies": {},
"devDependencies": {
"@types/mocha": "5.2.7",
"@types/node": "^14.0.14",
"assert": "^2.0.0",
"mocha": "^8.0.1",
"ts-node-dev": "^1.0.0-pre.61",
"typescript": "^4.0.0"
}
}