-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.39 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
{
"name": "hapi-plugin-co",
"version": "1.1.5",
"description": "HAPI plugin for Co-Routine handlers",
"keywords": [ "hapi", "plugin", "co", "handler" ],
"main": "./hapi-plugin-co.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rse/hapi-plugin-co.git"
},
"author": {
"name": "Dr. Ralf S. Engelschall",
"email": "[email protected]",
"url": "http://engelschall.com"
},
"homepage": "https://github.com/rse/hapi-plugin-co",
"bugs": "https://github.com/rse/hapi-plugin-co/issues",
"peerDependencies": {
"@hapi/hapi": ">=18.0.0"
},
"dependencies": {
"@hapi/boom": "10.0.0",
"co": "4.6.0"
},
"devDependencies": {
"@hapi/hapi": "21.2.0",
"request": "2.88.2",
"request-promise": "4.2.6",
"eslint": "8.32.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-import": "2.27.4",
"eslint-plugin-node": "11.1.0"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"prepublishOnly": "eslint --config eslint.yaml hapi-plugin-co.js",
"test": "node test.js"
}
}