diff --git a/package.json b/package.json index 3cb23990f3..a08aeb5a21 100644 --- a/package.json +++ b/package.json @@ -10,12 +10,12 @@ "license": "Apache-2.0", "main": "lib/index.js", "bin": { - "reskindex": "./reskindex.js" + "reskindex": "scripts/reskindex.js" }, "scripts": { - "reskindex": "./reskindex.js -h header", - "build": "node babelcheck.js && babel src -d lib --source-maps", - "start": "node babelcheck.js && babel src -w -d lib --source-maps", + "reskindex": "scripts/reskindex.js -h header", + "build": "node scripts/babelcheck.js && babel src -d lib --source-maps", + "start": "node scripts/babelcheck.js && babel src -w -d lib --source-maps", "lint": "eslint src/", "lintall": "eslint src/ test/", "clean": "rimraf lib", diff --git a/babelcheck.js b/scripts/babelcheck.js similarity index 100% rename from babelcheck.js rename to scripts/babelcheck.js diff --git a/reskindex.js b/scripts/reskindex.js similarity index 100% rename from reskindex.js rename to scripts/reskindex.js