-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "makemehapi",
"version": "7.1.4",
"repository": {
"type": "git",
"url": "git://github.com/ccarruitero/makemehapi"
},
"license": "BSD",
"bin": {
"makemehapi": "./bin/makemehapi"
},
"engines": {
"node": ">=0.10.32"
},
"description": "Self guided workshops to teach you about hapi.",
"main": "index.js",
"scripts": {
"start": "node ./bin/makemehapi.js",
"lint": "eslint *.js exercises/**/**/*.js i18n/**/*.json",
"test": "npm run lint && workshopper-adventure-test",
"release": "standard-version"
},
"dependencies": {
"@hapi/basic": "^7.0.0",
"@hapi/boom": "^10.0.0",
"@hapi/h2o2": "^10.0.0",
"@hapi/hapi": "^21.0.0",
"@hapi/inert": "^7.0.0",
"@hapi/joi": "^17.1.1",
"@hapi/vision": "^7.0.0",
"bl": "^5.0.0",
"colors-tmpl": "^1.0.0",
"combined-stream": "^1.0.8",
"form-data": "^4.0.0",
"handlebars": "^4.7.2",
"hyperquest": "^2.1.3",
"rot13-transform": "^1.0.0",
"through2": "^4.0.2",
"workshopper-adventure": "^7.0.0",
"workshopper-exercise": "^3.0.1",
"workshopper-wrappedexec": "^0.1.3"
},
"keywords": [
"hapijs",
"hapi"
],
"preferGlobal": true,
"devDependencies": {
"eslint": "^8.27.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"standard": "^17.0.0",
"standard-version": "^9.0.0",
"workshopper-adventure-test": "^1.2.0"
}
}