diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/package.json b/package.json index 0936559..c6f7b83 100644 --- a/package.json +++ b/package.json @@ -4,13 +4,12 @@ "description": "A Lua VM written in JS ES6 targeting the browser", "main": "src/fengari.js", "directories": { + "lib": "src", "test": "tests" }, "scripts": { - "build": "webpack", "lint": "eslint src/ tests/", - "test": "tape tests/*.js tests/test-suite/*.js | faucet", - "test-inprogress": "tape tests/test-suite/inprogress/*.js | faucet" + "test": "tape tests/*.js tests/test-suite/*.js | faucet" }, "repository": { "type": "git", @@ -30,20 +29,17 @@ }, "homepage": "https://github.com/fengari-lua/fengari#readme", "devDependencies": { - "babel-core": "^6.26.0", - "babel-loader": "^7.1.1", - "babel-preset-env": "^1.6.0", - "eslint": "^4.13.0", + "eslint": "^4.19.1", "faucet": "^0.0.1", - "tape": "^4.8.0", - "webpack": "^3.5.5" + "tape": "^4.9.0" }, "dependencies": { - "readline-sync": "^1.4.7", + "readline-sync": "^1.4.9", "sprintf-js": "^1.1.1", "strftime": "^0.10.0", "tmp": "^0.0.33" }, + "sideEffects": false, "eslintConfig": { "env": { "browser": true, @@ -56,7 +52,9 @@ "indent": [ "error", 4, - {"SwitchCase": 1} + { + "SwitchCase": 1 + } ], "linebreak-style": [ "error", @@ -65,11 +63,15 @@ "no-console": 0, "no-empty": [ 2, - { "allowEmptyCatch": true } + { + "allowEmptyCatch": true + } ], "no-unused-vars": [ 2, - { "args": "none" } + { + "args": "none" + } ], "semi": [ "error", |