-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.6 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@electricg/hapi-mongodb-server",
"version": "1.0.3",
"description": "Basic API server made with hapi and MongoDB",
"main": "src/index.js",
"scripts": {
"coverage": "rm -rf coverage && nyc mocha test/{**,**/*}/*.test.js",
"dev": "./node_modules/.bin/nodemon example/server.js",
"giulia": "mocha test/example/endpoints/patch.item.validate.test.js",
"start": "node example/server.js",
"test": "npm run coverage"
},
"directories": {
"lib": "src",
"example": "example",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electricg/hapi-mongodb-server.git"
},
"keywords": [
"api",
"hapi",
"mongodb"
],
"author": "Giulia Alfonsi",
"license": "MIT",
"bugs": {
"url": "https://github.com/electricg/hapi-mongodb-server/issues"
},
"homepage": "https://github.com/electricg/hapi-mongodb-server#readme",
"dependencies": {
"hapi": "^17.5.2",
"joi": "^13.4.0",
"mongoose": "^5.2.4"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^5.2.0",
"eslint-plugin-prettier": "^2.6.2",
"mocha": "^5.2.0",
"mockgoose": "^7.3.5",
"nconf": "^0.10.0",
"nock": "^9.4.2",
"nodemon": "^1.18.3",
"nyc": "^12.0.2",
"prettier": "^1.13.7",
"prettier-eslint": "^8.8.2",
"request": "^2.87.0",
"rewire": "^4.0.1",
"should": "^13.2.1",
"sinon": "^6.1.4"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"reporter": [
"html",
"text"
]
}
}