mirror of
https://git.proxmox.com/git/package-rebuilds
synced 2025-08-21 20:49:16 +00:00
58 lines
1.8 KiB
JSON
58 lines
1.8 KiB
JSON
{
|
|
"name": "llhttp",
|
|
"version": "9.2.1",
|
|
"description": "HTTP parser in LLVM IR",
|
|
"main": "lib/llhttp.js",
|
|
"types": "lib/llhttp.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"src"
|
|
],
|
|
"scripts": {
|
|
"bench": "ts-node bench/",
|
|
"build": "ts-node bin/generate.ts",
|
|
"build-ts": "tsc",
|
|
"prebuild-wasm": "npm run wasm -- --prebuild && npm run wasm -- --setup",
|
|
"build-wasm": "npm run wasm -- --docker",
|
|
"wasm": "ts-node bin/build_wasm.ts",
|
|
"clean": "rm -rf lib && rm -rf test/tmp",
|
|
"prepare": "npm run clean && npm run build-ts",
|
|
"test": "node -r ts-node/register/type-check ./test/md-test.ts",
|
|
"lint": "eslint -c eslint.json bin/*.ts src/*.ts src/**/*.ts test/*.ts test/**/*.ts",
|
|
"lint-fix": "eslint --fix -c eslint.json bin/*.ts src/*.ts src/**/*.ts test/*.ts test/**/*.ts",
|
|
"postversion": "RELEASE=`node -e \"process.stdout.write(require('./package').version)\"` make -B postversion",
|
|
"github-release": "RELEASE_V=`node -e \"process.stdout.write('v' + require('./package').version)\"` make github-release"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/nodejs/llhttp.git"
|
|
},
|
|
"keywords": [
|
|
"http",
|
|
"llvm",
|
|
"ir",
|
|
"llparse"
|
|
],
|
|
"author": "Fedor Indutny <fedor@indutny.com> (http://darksi.de/)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/nodejs/llhttp/issues"
|
|
},
|
|
"homepage": "https://github.com/nodejs/llhttp#readme",
|
|
"devDependencies": {
|
|
"@stylistic/eslint-plugin": "^1.5.4",
|
|
"@types/node": "^20.11.10",
|
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
"@typescript-eslint/parser": "^6.20.0",
|
|
"eslint": "^8.56.0",
|
|
"llparse-dot": "^1.0.1",
|
|
"llparse-test-fixture": "^5.0.1",
|
|
"mdgator": "^1.1.2",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"dependencies": {
|
|
"llparse": "^7.1.1"
|
|
}
|
|
}
|