-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.08 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": "tsll",
"version": "1.0.0-alpha.11",
"description": "Compiler frontend for translating Typescript to LLVM IR",
"main": "./lib/converter.js",
"bin": "./lib/cli.js",
"scripts": {
"start": "node ./lib/cli.js",
"build": "rm -rf ./lib && npx tsc -p ./tsconfig.json",
"test": "npx jest --verbose --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sbip-sg/tsll.git"
},
"files": [
"lib"
],
"keywords": [
"LLVM",
"Compiler",
"TypeScript",
"SBIP"
],
"author": "SBIP (Singapore Blockchain Innovation Program)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sbip-sg/tsll/issues"
},
"homepage": "https://github.com/sbip-sg/tsll#readme",
"engines": {
"node": ">=14.17.3",
"npm": ">=6.14.13"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/yargs": "^17.0.2",
"jest": "^27.0.6",
"ts-jest": "^27.0.4"
},
"dependencies": {
"@types/node": "^16.4.0",
"@lungchen/llvm-node": "^0.0.39",
"yargs": "^17.0.1",
"typescript": "^4.3.5"
}
}