forked from dwyl/learn-hapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "learn-hapi",
"version": "8.2.0",
"description": "Learn to build APIs using Hapi.js",
"main": "index.js",
"scripts": {
"test": "./node_modules/lab/bin/lab -c && ./node_modules/lab/bin/lab -r html -o ./test/coverage.html",
"start": "node index.js",
"coverage": "./node_modules/lab/bin/lab -r lcov -o ./test/lcov.info && CODECLIMATE_REPO_TOKEN=c1fd44b286100ffb10e243fd0a8efb7421adbfa77bb0198c8fce92e0baeb55bf ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./test/lcov.info"
},
"repository": {
"type": "git",
"url": "git://github.com/nelsonic/learn-hapi.git"
},
"keywords": [
"learn",
"hapi"
],
"author": "@nelsonic",
"license": "MIT",
"bugs": {
"url": "https://github.com/nelsonic/learn-hapi/issues"
},
"homepage": "https://github.com/nelsonic/learn-hapi",
"dependencies": {
"bell": "^2.0.0",
"boom": "^2.6.1",
"handlebars": "^3.0.1",
"hapi": "^8.2.x",
"joi": "^6.0.0",
"socket.io": "^1.2"
},
"devDependencies": {
"code": "^1.3.0",
"codeclimate-test-reporter": "0.0.4",
"lab": "^5.4.0"
}
}