UNPKG

fengari-node-cli

Version:

The Lua command line application, but using fengari under node

85 lines (84 loc) 1.52 kB
{ "name": "fengari-node-cli", "version": "0.1.0", "description": " The Lua command line application, but using fengari under node", "bin": { "fengari": "./src/lua-cli.js", "fengaric": "./src/luac-cli.js" }, "directories": { "lib": "src", "test": "test" }, "scripts": { "lint": "eslint src/ test/", "prepublishOnly": "git diff-index --quiet --cached HEAD -- && npm run lint && npm run test", "test": "jest" }, "repository": { "type": "git", "url": "git+https://github.com/fengari-lua/fengari-node-cli.git" }, "keywords": [ "lua", "fengari", "repl", "cli" ], "contributors": [ "Benoit Giannangeli <giann008@gmail.com>", "Daurnimator <quae@daurnimator.com>" ], "license": "MIT", "bugs": { "url": "https://github.com/fengari-lua/fengari-node-cli/issues" }, "homepage": "https://github.com/fengari-lua/fengari-node-cli#readme", "dependencies": { "fengari": "^0.1.0", "readline-sync": "^1.4.7", "sprintf-js": "^1.1.1" }, "devDependencies": { "eslint": "^4.17.0", "jest": "^22.4.3" }, "eslintConfig": { "env": { "es6": true, "node": true }, "extends": "eslint:recommended", "rules": { "indent": [ "error", 4, { "SwitchCase": 1 } ], "linebreak-style": [ "error", "unix" ], "no-console": 0, "semi": [ "error", "always" ] }, "overrides": [ { "files": [ "test/*.js" ], "env": { "jest": true }, "parserOptions": { "sourceType": "module" } } ] } }