-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
40
41
42
43
44
45
46
{
"name": "mongo-models",
"version": "3.0.4",
"description": "JavaScript class interfaces to MongoDB collections",
"main": "index.js",
"scripts": {
"example": "MONGODB_URI='mongodb://localhost:27017' MONGODB_NAME='mongo-models-test' PORT=8080 node example/server.js",
"test": "lab -c -L -t 100 --assert @hapi/code",
"toc": "hapitoc"
},
"repository": {
"type": "git",
"url": "[email protected]:jedireza/mongo-models.git"
},
"keywords": [
"mongo",
"mongodb",
"model",
"models",
"odm"
],
"engines": {
"node": ">=8.x.x"
},
"author": "Reza Akhavan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jedireza/mongo-models/issues"
},
"homepage": "https://github.com/jedireza/mongo-models",
"devDependencies": {
"body-parser": "1.x.x",
"@hapi/code": "8.x.x",
"express": "4.x.x",
"hapitoc": "1.x.x",
"@hapi/lab": "22.x.x",
"mongodb": "3.x.x"
},
"peerDependencies": {
"mongodb": "3.x.x"
},
"dependencies": {
"@hapi/hoek": "9.x.x",
"@hapi/joi": "17.x.x"
}
}