-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 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
{
"name": "testing-hapi",
"version": "2.0.0",
"description": "Example hapi-backed API serivce with testing and CI.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "NODE_ENV=test node node_modules/lab/bin/lab -v -L -C -c -t 85 -I 'core,__core-js_shared__'",
"test-cov-html": "lab -r html -o coverage.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pashariger/testing-hapi.git"
},
"keywords": [
"hapi",
"hapi-v17",
"tests",
"lab",
"ci",
"travisci"
],
"author": "Pasha Riger",
"license": "ISC",
"bugs": {
"url": "https://github.com/pashariger/testing-hapi/issues"
},
"homepage": "https://github.com/pashariger/testing-hapi#readme",
"dependencies": {
"boom": "^7.3.0",
"hapi": "^18.1.0",
"hapi-swagger": "^9.3.0",
"inert": "^5.1.2",
"joi": "^14.3.1",
"promise": "^8.0.2",
"vision": "^5.4.4"
},
"devDependencies": {
"code": "^5.2.4",
"eslint-config-hapi": "^12.0.0",
"eslint-plugin-hapi": "^4.1.0",
"lab": "^18.0.1"
}
}