forked from achingbrain/webtransport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.84 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
{
"name": "@fails-components/webtransport",
"version": "0.0.9",
"description": "A component to add webtransport support (server and client) to node.js using libquiche",
"main": "lib/index.js",
"module": "lib/index.js",
"engines": {
"node": ">=16"
},
"type": "module",
"types": "./dist/lib/index.d.ts",
"scripts": {
"start": "node test/echoserver.js",
"test": "mocha test/*.spec.js",
"oldtest": "node test/test.js",
"install": "node build.js install",
"build": "node build.js build",
"rebuild": "node build.js rebuild",
"rebuild-debug": "node build.js rebuild-debug -D",
"build-debug": "node build.js build-debug",
"types": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fails-components/webtransport.git"
},
"keywords": [
"webtransport"
],
"author": "Marten Richter",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/fails-components/webtransport/issues"
},
"homepage": "https://github.com/fails-components/webtransport#readme",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^4.3.0",
"prebuild-install": "^7.1.1"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/eslint-parser": "^7.17.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.5",
"chai": "^4.3.6",
"cmake-js": "^6.3.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"mocha": "^10.1.0",
"node-forge": "^1.3.1",
"prettier": "^2.4.1",
"typescript": "^4.8.4"
},
"binary": {
"napi_versions": [
6
]
}
}