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.
55 lines
1.6 KiB
55 lines
1.6 KiB
{
|
|
"name": "lua-in-js",
|
|
"version": "2.0.1",
|
|
"description": "A Lua to JS transpiler/runtime",
|
|
"keywords": [
|
|
"lua",
|
|
"javascript",
|
|
"typescript",
|
|
"transpiler",
|
|
"runtime",
|
|
"parser"
|
|
],
|
|
"author": "Teoxoy",
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"main": "dist/lua-in-js.cjs.js",
|
|
"module": "dist/lua-in-js.es.js",
|
|
"typings": "dist/types/index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/teoxoy/lua-in-js.git"
|
|
},
|
|
"scripts": {
|
|
"build": "rimraf dist && rollup -c rollup.config.js",
|
|
"dev": "rimraf dist && rollup -c rollup.config.js -w",
|
|
"test": "node ./tests/test.js",
|
|
"lint": "eslint . --ignore-path .gitignore --ext .ts",
|
|
"lint:fix": "eslint . --ignore-path .gitignore --ext .ts --fix"
|
|
},
|
|
"dependencies": {
|
|
"luaparse": "^0.2.1",
|
|
"printj": "^1.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/luaparse": "^0.2.6",
|
|
"@types/node": "^12.12.11",
|
|
"@typescript-eslint/eslint-plugin": "^2.8.0",
|
|
"@typescript-eslint/parser": "^2.8.0",
|
|
"eslint": "^6.6.0",
|
|
"eslint-config-prettier": "^6.7.0",
|
|
"eslint-plugin-import": "^2.18.2",
|
|
"eslint-plugin-prettier": "^3.1.1",
|
|
"prettier": "1.19.1",
|
|
"rimraf": "^3.0.0",
|
|
"rollup": "^1.27.3",
|
|
"rollup-plugin-commonjs": "^10.1.0",
|
|
"rollup-plugin-node-resolve": "^5.2.0",
|
|
"rollup-plugin-typescript2": "^0.25.2",
|
|
"typescript": "^3.7.2"
|
|
}
|
|
}
|