-
Notifications
You must be signed in to change notification settings - Fork 184
/
package.json
60 lines (60 loc) · 1.77 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
{
"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",
"lint-fix": "eslint --fix",
"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://[email protected]/nodejs/llhttp.git"
},
"keywords": [
"http",
"llvm",
"ir",
"llparse"
],
"author": "Fedor Indutny <[email protected]> (http://darksi.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodejs/llhttp/issues"
},
"homepage": "https://github.com/nodejs/llhttp#readme",
"devDependencies": {
"@eslint/js": "10.0.0",
"@stylistic/eslint-plugin": "^2.1.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^9.9.0",
"llparse-dot": "^1.0.1",
"llparse-test-fixture": "^5.0.2",
"mdgator": "^1.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
},
"dependencies": {
"llparse": "^7.1.1"
}
}