UNPKG

undici

Version:

An HTTP/1.1 client, written from scratch for Node.js

87 lines (86 loc) 2.43 kB
{ "name": "undici", "version": "4.0.0", "description": "An HTTP/1.1 client, written from scratch for Node.js", "homepage": "https://undici.nodejs.org", "bugs": { "url": "https://github.com/nodejs/undici/issues" }, "repository": { "type": "git", "url": "git+https://github.com/nodejs/undici.git" }, "license": "MIT", "author": "Matteo Collina <hello@matteocollina.com>", "contributors": [ { "name": "Robert Nagy", "url": "https://github.com/ronag", "author": true } ], "main": "index.js", "types": "index.d.ts", "files": [ "*.d.ts", "index.js", "lib", "types", "docs" ], "scripts": { "prebuild:wasm": "docker build -t llhttp_wasm_builder -f build/Dockerfile .", "build:wasm": "node build/wasm.js --docker", "lint": "standard | snazzy", "lint:fix": "standard --fix | snazzy", "test": "tap test/*.js --no-coverage && jest test/jest/test", "test:tdd": "tap test/*.js -w --no-coverage-report", "test:typescript": "tsd", "coverage": "standard | snazzy && tap test/*.js", "coverage:ci": "npm run coverage -- --coverage-report=lcovonly", "bench": "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", "serve:website": "docsify serve .", "prepare": "husky install", "fuzz": "jsfuzz test/fuzzing/fuzz.js corpus" }, "devDependencies": { "@sinonjs/fake-timers": "^7.0.5", "@types/node": "^15.0.2", "abort-controller": "^3.0.0", "concurrently": "^6.1.0", "cronometro": "^0.8.0", "docsify-cli": "^4.4.3", "https-pem": "^2.0.0", "husky": "^6.0.0", "jest": "^26.6.3", "jsfuzz": "^1.0.15", "pre-commit": "^1.2.2", "proxy": "^1.0.2", "proxyquire": "^2.1.3", "semver": "^7.3.5", "sinon": "^10.0.0", "snazzy": "^9.0.0", "standard": "^16.0.3", "tap": "^15.0.9", "tsd": "^0.17.0", "wait-on": "^5.3.0" }, "engines": { "node": ">=12.18" }, "standard": { "ignore": [ "lib/llhttp/constants.js", "lib/llhttp/utils.js" ] }, "tsd": { "directory": "test/types", "compilerOptions": { "esModuleInterop": true } } }