-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
{
"name": "hapi-on-kubernetes",
"version": "1.1.1",
"description": "A Hapi.js plugin to handle Kubernetes Liveness & Readiness probes",
"main": "lib/plugin.js",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "eslint --quiet=true --ext .js --ignore-path .eslintignore .",
"lintfix": "eslint --fix --ext .js --ignore-path .eslintignore .",
"upgrade": "ncu -u -t minor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NextStepGuru/hapi-on-kubernetes.git"
},
"keywords": [
"hapi",
"kubernetes",
"hapi-plugin"
],
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"author": "Jeremy R DeYoung",
"license": "MIT",
"bugs": {
"url": "https://github.com/NextStepGuru/hapi-on-kubernetes/issues"
},
"homepage": "https://github.com/NextStepGuru/hapi-on-kubernetes#readme",
"dependencies": {
"eslint": "^7.27.0"
},
"devDependencies": {
"@hapi/eslint-config-hapi": "^13.0.2",
"@hapi/eslint-plugin-hapi": "^4.3.5",
"babel-eslint": "^10.1.0",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^6.2.2",
"nodemon": "^2.0.7",
"npm-check-updates": "^11.6.0",
"prettier": "^2.3.0"
}
}