-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.25 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
{
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"dev": "ts-node src/app/index.ts --",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"format": "prettier --write ."
},
"//": [
"This is the main repo for the language",
"Open issues at: https://github.com/Basl-Language/Basl-Compiler/issues"
],
"devDependencies": {
"@types/node": "^14.11.2",
"gts": "^3.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"name": "basl-compiler",
"description": "BASL is the best compiler ever, and you cannot say otherwise. It's fast and reliable, and quite literally amazing.",
"version": "1.0.0",
"main": "dist/app/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Basl-Language/Basl-Compiler.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Basl-Language/Basl-Compiler/issues"
},
"homepage": "https://github.com/Basl-Language/Basl-Compiler#readme",
"dependencies": {
"commander": "^10.0.0",
"llvm-bindings": "^0.4.2"
}
}