You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
699 B
35 lines
699 B
{
|
|
"name": "lua-js",
|
|
"version": "1.0.0",
|
|
"description": "A Lua to JS transpiler / runtime",
|
|
"keywords": [
|
|
"lua",
|
|
"javascript",
|
|
"transpiler",
|
|
"runtime"
|
|
],
|
|
"author": "Teoxoy",
|
|
"license": "MIT",
|
|
"main": "dist/lua2js.js",
|
|
"module": "src/index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/teoxoy/lua-js.git"
|
|
},
|
|
"scripts": {
|
|
"build": "webpack"
|
|
},
|
|
"dependencies": {
|
|
"printf": "^0.5.1",
|
|
"luaparse": "^0.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.2.2",
|
|
"@babel/preset-env": "^7.2.3",
|
|
"babel-loader": "^8.0.5",
|
|
"clean-webpack-plugin": "^1.0.0",
|
|
"webpack": "^4.28.4",
|
|
"webpack-cli": "^3.2.1"
|
|
}
|
|
}
|