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
|
{
"name": "llparse-builder",
"version": "1.5.2",
"description": "Build graph for consumption in LLParse",
"main": "lib/builder.js",
"types": "lib/builder.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf lib",
"prepare": "npm run clean && npm run build",
"lint": "tslint -c tslint.json src/*.ts src/**/*.ts src/**/**/*.ts test/*.ts",
"mocha": "mocha -r ts-node/register/type-check --reporter spec test/*-test.ts",
"test": "npm run mocha && npm run lint"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/indutny/llparse-builder.git"
},
"keywords": [
"llparse",
"builder",
"llvm",
"bitcode"
],
"author": "Fedor Indutny <fedor@indutny.com> (http://darksi.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/indutny/llparse-builder/issues"
},
"homepage": "https://github.com/indutny/llparse-builder#readme",
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.8",
"mocha": "^8.1.3",
"ts-node": "^9.0.0",
"tslint": "^5.20.1",
"typescript": "^4.0.3"
},
"dependencies": {
"@types/debug": "4.1.5 ",
"binary-search": "^1.3.6",
"debug": "^4.2.0"
}
}
|