-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.3 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.3 KB
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": "onelang-ide",
"version": "0.0.2",
"description": "Web-based IDE for OneLang transpiler (onelang.io)",
"main": "serve.js",
"license": "MIT",
"author": {
"name": "Koczka Tamás",
"email": "[email protected]",
"url": "https://kt.gy/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onelang/OneIDE.git"
},
"keywords": [
"onelang",
"ide",
"transpiler",
"source-to-source",
"programming-language"
],
"bugs": {
"url": "https://github.com/onelang/OneLang/issues"
},
"homepage": "https://onelang.io",
"files": [
"images",
"js",
"lib",
"index.html"
],
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"buildCompilerBackend": "cd CompilerBackend;./compile.sh",
"start": "node serve.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"ace-builds": "^1.4.8",
"bootstrap": "^4.4.1",
"bootswatch": "^4.4.1",
"bowser": "^2.9.0",
"golden-layout": "^1.5.9",
"http-server": "^0.12.1",
"jquery": "^3.4.1",
"onelang": "0.0.4",
"requirejs": "^2.3.6"
},
"devDependencies": {
"@types/ace": "0.0.42",
"@types/bootstrap": "^4.3.1",
"@types/jquery": "^3.3.32",
"@types/node": "^13.7.0",
"typescript": "^3.7.5"
}
}