forked from ontola/koa-http2-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.33 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "koa-http2-proxy",
"version": "0.0.4",
"description": "Configure http2-proxy middleware with ease for koa.",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist && rm -rf coverage",
"lint": "yarn lint:prettier && yarn lint:tslint",
"lint:prettier": "prettier --check \"**/*.{js,ts,md}\"",
"lint:tslint": "yarn tslint -c tslint.json '{lib,test}/**/*.ts'",
"lint:fix": "prettier --write \"**/*.{js,ts,md}\"",
"build": "tsc",
"pretest": "yarn build",
"test": "jest --runInBand",
"precover": "yarn clean && yarn build",
"cover": "jest --runInBand --coverage",
"precoveralls": "yarn clean && yarn build",
"coveralls": "jest --runInBand --coverage --coverageReporters=text-lcov | coveralls",
"postcoveralls": "yarn clean",
"prepare": "yarn clean && yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/ontola/koa-http2-proxy.git"
},
"keywords": [
"reverse",
"proxy",
"middleware",
"http",
"https",
"koa",
"browser-sync",
"websocket",
"ws",
"cors"
],
"author": "Steven Chim, Ontola BV",
"license": "MIT",
"bugs": {
"url": "https://github.com/ontola/koa-http2-proxy/issues"
},
"homepage": "https://github.com/ontola/koa-http2-proxy",
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@types/http-proxy": "^1.17.0",
"@types/is-glob": "^4.0.0",
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.136",
"@types/micromatch": "^3.1.0",
"@types/node": "^12.6.2",
"browser-sync": "^2.26.7",
"connect": "^3.6.6",
"coveralls": "^3.0.5",
"husky": "^3.0.0",
"jest": "^24.5.0",
"koa": "^2.11.0",
"koa-router": "^7.4.0",
"open": "^6.4.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3",
"ws": "^7.1.0"
},
"dependencies": {
"finalhandler": "^1.1.2",
"http2-proxy": "^5.0.43",
"is-glob": "^4.0.1",
"lodash": "^4.17.14",
"micromatch": "^4.0.2"
},
"engines": {
"node": ">=10.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}