forked from httptoolkit/httpolyglot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.09 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": "@httptoolkit/httpolyglot",
"version": "2.2.1",
"author": "Tim Perry <[email protected]>",
"description": "Serve http and https connections over the same port with node.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/",
"src/"
],
"scripts": {
"prebuild": "rimraf dist/*",
"build": "tsc",
"prepack": "npm run build",
"pretest": "npm run build",
"test": "mocha -r ts-node/register 'test/**/*.spec.ts'"
},
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"http",
"https",
"http2",
"multiplex",
"polyglot"
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/httptoolkit/httpolyglot/raw/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "http://github.com/httptoolkit/httpolyglot.git"
},
"dependencies": {
"@types/node": "*"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"mocha": "^9.1.1",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}