forked from nodejs/llhttp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.69 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
{
"name": "llhttp",
"version": "6.0.7",
"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": "docker build -t llhttp_wasm_builder . && 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",
"lint": "tslint -c tslint.json bin/*.ts src/*.ts src/**/*.ts test/*.ts test/**/*.ts",
"mocha": "mocha --timeout=10000 -r ts-node/register/type-check --reporter progress test/*-test.ts",
"test": "npm run mocha && npm run lint",
"postversion": "TAG=`node -e \"process.stdout.write(require('./package').version)\"` make -B postversion"
},
"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": {
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.52",
"javascript-stringify": "^2.0.1",
"llparse-dot": "^1.0.1",
"llparse-test-fixture": "^5.0.1",
"mdgator": "^1.1.2",
"mocha": "^7.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.20.1",
"typescript": "^3.9.9"
},
"dependencies": {
"@types/semver": "^5.5.0",
"llparse": "^7.1.1",
"semver": "^5.7.1"
}
}