-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 951 Bytes
/
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
{
"name": "hapi-mongojs",
"version": "3.1.0",
"description": "Hapi MongoDB plugin",
"author": "niqdev",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/niqdev/hapi-mongojs.git"
},
"keywords": [
"hapi",
"mongodb",
"plugin"
],
"scripts": {
"test": "cross-env NODE_ENV=test ./node_modules/mocha/bin/mocha --recursive test",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && codecov",
"example:install": "npm install && cd example && npm install",
"example:start": "cd example && npm start"
},
"peerDependencies": {
"hapi": "^13.4.0"
},
"dependencies": {
"mongojs": "^2.4.0"
},
"devDependencies": {
"code": "^2.2.1",
"codecov": "^1.0.1",
"cross-env": "^1.0.7",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"proxyquire": "^1.7.4",
"sinon": "^1.17.4"
}
}