-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.66 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.66 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
{
"name": "microbrewit-logserver",
"version": "0.0.1",
"description": "A simple Hapi.js based log server that the microbrewit frontend can log events to.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"watch-source": "./node_modules/.bin/nodemon index.js",
"test": "./node_modules/lab/bin/lab -t 90 -r lcov | ./node_modules/coveralls/bin/coveralls.js",
"watch-test": "./node_modules/.bin/nodemon --watch ./test --watch ./src --watch ./index.js --exec 'npm run test'",
"lint": "./node_modules/.bin/eslint ./",
"watch-lint": "./node_modules/.bin/nodemon --watch ./test --watch ./src --watch ./index.js --exec 'npm run lint'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Microbrewit/microbrewit-logserver.git"
},
"keywords": [
"microbrew.it",
"microbrewit",
"log",
"logging",
"logserver",
"hapi"
],
"author": "Snorre Magnus Davøen",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microbrewit/microbrewit-logserver/issues"
},
"homepage": "https://github.com/Microbrewit/microbrewit-logserver#readme",
"engines": {
"node": ">= 5.0.0"
},
"dependencies": {
"glue": "^3.2.0",
"good": "^6.6.0",
"good-console": "^5.3.1",
"hapi": "^13.3.0",
"hapi-swagger": "^5.0.0",
"inert": "^3.2.0",
"joi": "^8.0.5",
"vision": "^4.1.0"
},
"devDependencies": {
"code": "^2.2.0",
"coveralls": "^2.11.9",
"eslint": "^2.7.0",
"lab": "^10.3.1",
"nodemon": "^1.9.1"
}
}