-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.21 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
{
"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 -p tsconfig.build.json",
"clean": "rm -rf lib && rm -rf .tmptest",
"prepare": "npm run clean && npm run build",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "borp test/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/indutny/llparse-builder.git"
},
"keywords": [
"llparse",
"builder",
"llvm",
"bitcode"
],
"author": "Fedor Indutny <[email protected]> (http://darksi.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/indutny/llparse-builder/issues"
},
"homepage": "https://github.com/indutny/llparse-builder#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",
"borp": "^0.17.0",
"eslint": "^9.9.0",
"typescript-eslint": "^8.0.1",
"typescript": "^5.5.4"
}
}