-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
50 lines (50 loc) · 1.06 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
48
49
50
{
"name": "wasm2lua",
"version": "0.8.12",
"description": "A tool to convert WASM into Lua",
"main": "js/index.js",
"scripts": {
"test": "node js/testsuite.js",
"build": "tsc -p ."
},
"keywords": [
"wasm",
"lua",
"compiler",
"transpiler",
"wasi",
"luajit",
"webassembly"
],
"author": {
"name": "swadical",
"url": "https://glua.team"
},
"contributors": [
{
"name": "Adam Coggeshall",
"url": "https://github.com/birdbrainswagtrain"
}
],
"license": "MIT",
"repository": "[email protected]:SwadicalRag/wasm2lua.git",
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/fs-extra": "^7.0.0",
"@types/node": "^11.13.7",
"@types/webidl2": "^10.2.3",
"typescript": "^3.4.5"
},
"dependencies": {
"@webassemblyjs/wasm-parser": "^1.8.5",
"colors": "^1.3.3",
"commander": "^2.20.0",
"fs-extra": "^8.0.1",
"luamin": "^1.0.4",
"webidl2": "^21.1.0"
},
"bin": {
"wasm2lua": "js/bin/wasm2lua.js",
"lua-webidl": "js/bin/lua-webidl.js"
}
}