-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "@supercharge/hapi-google-cloud-functions",
"description": "Run your hapi server in a Google Cloud function",
"version": "2.0.0",
"author": "Marcus Pöhls <marcus@superchargejs.com>",
"bugs": {
"url": "https://github.com/supercharge/hapi-google-cloud-functions/issues"
},
"devDependencies": {
"@hapi/hapi": "~20.0.0",
"@hapi/inert": "~6.0.2",
"@hapi/vision": "~6.0.1",
"@types/jest": "~26.0.10",
"eslint": "~7.7.0",
"eslint-config-standard": "~14.1.1",
"eslint-plugin-import": "~2.22.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~4.2.1",
"eslint-plugin-standard": "~4.0.1",
"handlebars": "~4.7.6",
"jest": "~26.4.2",
"jest-extended": "~0.11.5"
},
"files": [
"index.js",
"src"
],
"homepage": "https://github.com/supercharge/hapi-google-cloud-functions",
"keywords": [
"hapi",
"google",
"cloud",
"functions",
"google-cloud-functions",
"nodejs"
],
"license": "MIT",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/hapi-google-cloud-functions.git"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "jest"
}
}