-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.38 KB
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
47
48
49
50
51
52
53
54
55
{
"name": "@wheredevsdev/abbot",
"version": "0.8.0",
"description": "Write better MongoDB queries",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "nyc mocha -r ts-node/register 'test/**/*.ts' --skip-project"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wheredevsdev/abbot.git"
},
"contributors": [
{
"name": "Shashank Kaul",
"email": "kaulshashank96@gmail.com",
"url": "https://www.github.com/kaulshashank"
},
{
"name": "Abhishek Kumar",
"email": "abhishek.kumar251095@gmail.com",
"url": "https://github.com/abhishek-kumar251095"
},
{
"name": "Divij Tripathi",
"email": "divij.tripathi4@gmail.com",
"url": "https://github.com/divij123"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/wheredevsdev/abbot/issues"
},
"homepage": "https://github.com/wheredevsdev/abbot#readme",
"dependencies": {
"@types/mongodb": "^3.5.26",
"colors": "^1.4.0",
"mongodb": "^3.6.0",
"object-hash": "^2.0.3"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.0.27",
"@types/object-hash": "^1.3.4",
"chai": "^4.2.0",
"jsdoc": "^3.6.6",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}