forked from fails-components/webtransport
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 2.51 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
{
"name": "@fails-components/webtransport-workspace",
"version": "1.0.11",
"description": "A component to add webtransport support (server and client) to node.js using libquiche",
"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"
},
"scripts": {
"version": "npm version $npm_package_version --workspaces && git add **/package.json && git add transports/**/package.json",
"test": "npm run test:node && npm run test:node:http2 && npm run test:chromium && npm run test:chromium:http2:polyfill && npm run test:chromium:http2:ponyfill && npm run test:firefox:http2:polyfill && npm run test:firefox:http2:ponyfill && npm run test:webkit:http2:polyfill && npm run test:webkit:http2:ponyfill",
"test:node": "npm run test:node --workspace main",
"test:node:http2": "npm run test:node:http2 --workspace main",
"test:chromium": "npm run test:chromium --workspace main",
"test:chromium:http2:polyfill": "npm run test:chromium:http2:polyfill --workspace main",
"test:chromium:http2:ponyfill": "npm run test:chromium:http2:ponyfill --workspace main",
"test:firefox": "npm run test:firefox --workspace main",
"test:firefox:http2:polyfill": "npm run test:firefox:http2:polyfill --workspace main",
"test:firefox:http2:ponyfill": "npm run test:firefox:http2:ponyfill --workspace main",
"test:webkit": "npm run test:webkit --workspace main",
"test:webkit:http2:polyfill": "npm run test:webkit:http2:polyfill --workspace main",
"test:webkit:http2:ponyfill": "npm run test:webkit:http2:ponyfill --workspace main",
"oldtest": "npm run oldtest --workspace main",
"oldtesthttp2": "npm run oldtesthttp2 --workspace main",
"types": "tsc --build",
"lint": "npm run lint --workspaces",
"prebuild": "npm run prebuild --workspace transports/http3-quiche",
"build-debug": "npm run build-debug --workspace transports/http3-quiche",
"dobuild": "npm run dobuild --workspace transports/http3-quiche",
"rebuild": "npm run rebuild --workspace transports/http3-quiche",
"rebuild-debug": "npm run rebuild-debug --workspace transports/http3-quiche",
"publish": "npm publish --workspace main --workspace transports/http3-quiche"
},
"homepage": "https://github.com/fails-components/webtransport/main/#readme",
"workspaces": [
"transports/*",
"main"
]
}