-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.09 KB
/
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": "moosedb",
"version": "0.3.1",
"description": "Lightweight MongoDb driver.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"start": "npm run build && node js/demo/main.js",
"build": "date +\"%T\" && echo \"Cleaning...\" && rm -rf ./js && echo \"Compiling...\" && tsc && echo \"Done!\" && date +\"%T\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jellybeanci/moosedb.git"
},
"keywords": [
"basic",
"lightweight",
"mongo",
"driver"
],
"author": "Goksel KUCUKSAHIN <[email protected]> (https://github.com/GokselKUCUKSAHIN)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jellybeanci/moosedb/issues"
},
"homepage": "https://github.com/jellybeanci/moosedb#readme",
"dependencies": {
"@jellybeanci/random": "^0.1.1",
"@jellybeanci/sleep": "^0.0.1",
"mongodb": "^4.8.1",
"undef-check": "^0.0.4",
"using-statement": "^0.4.1"
},
"devDependencies": {
"@types/node": "^18.6.3",
"ts-node": "^10.9.1"
}
}