commit
This commit is contained in:
parent
13ec9babde
commit
68f4b60012
1429 changed files with 2481 additions and 272836 deletions
32
node_modules/undici/package.json
generated
vendored
32
node_modules/undici/package.json
generated
vendored
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "undici",
|
||||
"version": "5.16.0",
|
||||
"version": "5.22.1",
|
||||
"description": "An HTTP/1.1 client, written from scratch for Node.js",
|
||||
"homepage": "https://undici.nodejs.org",
|
||||
"bugs": {
|
||||
|
@ -42,26 +42,26 @@
|
|||
],
|
||||
"scripts": {
|
||||
"build:node": "npx esbuild@0.14.38 index-fetch.js --bundle --platform=node --outfile=undici-fetch.js",
|
||||
"prebuild:wasm": "docker build -t llhttp_wasm_builder -f build/Dockerfile .",
|
||||
"prebuild:wasm": "node build/wasm.js --prebuild",
|
||||
"build:wasm": "node build/wasm.js --docker",
|
||||
"lint": "standard | snazzy",
|
||||
"lint:fix": "standard --fix | snazzy",
|
||||
"test": "npm run test:tap && npm run test:node-fetch && npm run test:fetch && npm run test:cookies && npm run test:wpt && npm run test:websocket && npm run test:jest && tsd",
|
||||
"test": "npm run test:tap && npm run test:node-fetch && npm run test:fetch && npm run test:cookies && npm run test:wpt && npm run test:websocket && npm run test:jest && npm run test:typescript",
|
||||
"test:cookies": "node scripts/verifyVersion 16 || tap test/cookie/*.js",
|
||||
"test:node-fetch": "node scripts/verifyVersion.js 16 || mocha test/node-fetch",
|
||||
"test:fetch": "node scripts/verifyVersion.js 16 || (npm run build:node && tap test/fetch/*.js && tap test/webidl/*.js)",
|
||||
"test:node-fetch": "node scripts/verifyVersion.js 16 || mocha --exit test/node-fetch",
|
||||
"test:fetch": "node scripts/verifyVersion.js 16 || (npm run build:node && tap --expose-gc test/fetch/*.js && tap test/webidl/*.js)",
|
||||
"test:jest": "node scripts/verifyVersion.js 14 || jest",
|
||||
"test:tap": "tap test/*.js test/diagnostics-channel/*.js",
|
||||
"test:tdd": "tap test/*.js test/diagnostics-channel/*.js -w",
|
||||
"test:typescript": "tsd && tsc test/imports/undici-import.ts",
|
||||
"test:typescript": "node scripts/verifyVersion.js 14 || tsd && tsc --skipLibCheck test/imports/undici-import.ts",
|
||||
"test:websocket": "node scripts/verifyVersion.js 18 || tap test/websocket/*.js",
|
||||
"test:wpt": "node scripts/verifyVersion 18 || (node test/wpt/start-fetch.mjs && node test/wpt/start-FileAPI.mjs && node test/wpt/start-mimesniff.mjs && node test/wpt/start-xhr.mjs && node test/wpt/start-websockets.mjs)",
|
||||
"test:wpt": "node scripts/verifyVersion 18 || (node test/wpt/start-fetch.mjs && node test/wpt/start-FileAPI.mjs && node test/wpt/start-mimesniff.mjs && node test/wpt/start-xhr.mjs && node --no-warnings test/wpt/start-websockets.mjs)",
|
||||
"coverage": "nyc --reporter=text --reporter=html npm run test",
|
||||
"coverage:ci": "nyc --reporter=lcov npm run test",
|
||||
"bench": "PORT=3042 concurrently -k -s first npm:bench:server npm:bench:run",
|
||||
"bench:server": "node benchmarks/server.js",
|
||||
"prebench:run": "node benchmarks/wait.js",
|
||||
"bench:run": "CONNECTIONS=1 node --experimental-wasm-simd benchmarks/benchmark.js; CONNECTIONS=50 node --experimental-wasm-simd benchmarks/benchmark.js",
|
||||
"bench:run": "CONNECTIONS=1 node benchmarks/benchmark.js; CONNECTIONS=50 node benchmarks/benchmark.js",
|
||||
"serve:website": "docsify serve .",
|
||||
"prepare": "husky install",
|
||||
"fuzz": "jsfuzz test/fuzzing/fuzz.js corpus"
|
||||
|
@ -75,9 +75,10 @@
|
|||
"chai-as-promised": "^7.1.1",
|
||||
"chai-iterator": "^3.0.2",
|
||||
"chai-string": "^1.5.0",
|
||||
"concurrently": "^7.1.0",
|
||||
"concurrently": "^8.0.1",
|
||||
"cronometro": "^1.0.5",
|
||||
"delay": "^5.0.0",
|
||||
"dns-packet": "^5.4.0",
|
||||
"docsify-cli": "^4.4.3",
|
||||
"form-data": "^4.0.0",
|
||||
"formdata-node": "^4.3.1",
|
||||
|
@ -85,25 +86,25 @@
|
|||
"husky": "^8.0.1",
|
||||
"import-fresh": "^3.3.0",
|
||||
"jest": "^29.0.2",
|
||||
"jsdom": "^21.1.0",
|
||||
"jsfuzz": "^1.0.15",
|
||||
"mocha": "^10.0.0",
|
||||
"p-timeout": "^3.2.0",
|
||||
"pre-commit": "^1.2.2",
|
||||
"proxy": "^1.0.2",
|
||||
"proxyquire": "^2.1.3",
|
||||
"semver": "^7.3.5",
|
||||
"sinon": "^15.0.0",
|
||||
"snazzy": "^9.0.0",
|
||||
"standard": "^17.0.0",
|
||||
"table": "^6.8.0",
|
||||
"tap": "^16.1.0",
|
||||
"tsd": "^0.25.0",
|
||||
"typescript": "^4.8.4",
|
||||
"wait-on": "^6.0.0",
|
||||
"tsd": "^0.28.1",
|
||||
"typescript": "^5.0.2",
|
||||
"wait-on": "^7.0.1",
|
||||
"ws": "^8.11.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=12.18"
|
||||
"node": ">=14.0"
|
||||
},
|
||||
"standard": {
|
||||
"env": [
|
||||
|
@ -112,8 +113,7 @@
|
|||
"ignore": [
|
||||
"lib/llhttp/constants.js",
|
||||
"lib/llhttp/utils.js",
|
||||
"test/wpt/tests",
|
||||
"test/wpt/runner/resources"
|
||||
"test/wpt/tests"
|
||||
]
|
||||
},
|
||||
"tsd": {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue