-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.3 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
{
"name": "hapi-class-extension-points",
"description": "hapi plugin that registers lifecycle extension points from class methods",
"version": "2.1.0",
"author": "Marcus Pöhls <marcus@futurestud.io>",
"bugs": {
"url": "https://github.com/futurestudio/hapi-class-extension-points/issues"
},
"dependencies": {
"@supercharge/classes": "~2.0.0",
"lodash": "~4.17.15"
},
"devDependencies": {
"@hapi/code": "~9.0.0",
"@hapi/hapi": "~21.3.0",
"@hapi/lab": "~25.2.0",
"eslint": "~7.32.0",
"eslint-config-standard": "~16.0.1",
"eslint-plugin-import": "~2.29.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~6.1.0",
"eslint-plugin-standard": "~4.1.0",
"husky": "~9.0.5"
},
"engines": {
"node": ">=12"
},
"homepage": "https://github.com/futurestudio/hapi-class-extension-points",
"keywords": [
"hapi",
"hapi.js",
"hapijs",
"plugin"
],
"license": "MIT",
"main": "lib/index.js",
"types": "typings",
"repository": {
"type": "git",
"url": "git+https://github.com/futurestudio/hapi-class-extension-points.git"
},
"scripts": {
"prepush": "npm test",
"test": "lab --assert @hapi/code --leaks --coverage --lint --reporter console --output stdout --reporter html --output ./coverage/coverage.html"
}
}