-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
47
48
49
{
"name": "mongocruise",
"version": "1.7.0",
"description": "A smooth, trouble-free journey through your MongoDB collections with simple RESTful APIs.",
"author": "Andre Gallo <[email protected]>",
"repository": "git://github.com/afgallo/mongocruise",
"license": "MIT",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "lab -a @hapi/code -L -l -t 100",
"test:ci": "lab -a @hapi/code -L -l -t 100 -r lcov -o lcov.info",
"lint": "eslint ."
},
"dependencies": {
"@hapi/boom": "10.0.x",
"joi": "17.13.x"
},
"devDependencies": {
"@hapi/code": "9.x.x",
"@hapi/eslint-plugin": "6.x.x",
"@hapi/hapi": "21.x.x",
"@hapi/lab": "25.x.x",
"eslint": "8.x.x",
"eslint-config-prettier": "9.x.x",
"eslint-config-standard": "17.x.x",
"eslint-plugin-import": "2.x.x",
"eslint-plugin-n": "16.x.x",
"eslint-plugin-prettier": "5.x.x",
"eslint-plugin-promise": "6.x.x",
"mongodb": "6.x.x",
"mongodb-memory-server": "9.x.x",
"prettier": "3.x.x",
"sinon": "17.x.x"
},
"peerDependencies": {
"mongokai": ">= 1.x.x"
},
"keywords": [
"hapi",
"mongo",
"nosql",
"rest",
"routes"
]
}