diff --git a/index.js b/index.js
index 898f6fa..0103c43 100755
--- a/index.js
+++ b/index.js
@@ -60,6 +60,9 @@ const program = new commander.Command('Create CodeceptJS')
   .option('--webdriverio', 'Install webdriverio packages')
   .option('--testcafe', 'Install testcafe packages')
 
+   // force mode
+  .option('--force', 'Accept an incorrect (and potentially broken) dependency resolution.')
+
   .allowUnknownOption()
   .on('--help', () => {
     console.log();
diff --git a/package.json b/package.json
index b0fab5e..75d9bed 100644
--- a/package.json
+++ b/package.json
@@ -1,13 +1,12 @@
 {
     "name": "create-codeceptjs",
-    "version": "0.1.8",
+    "version": "1.0.0",
     "description": "Install CodeceptJS with all its dependencies in a single run",
     "main": "index.js",
     "bin": {
         "create-codeceptjs": "index.js"
     },
-    "scripts": {
-    },
+    "scripts": {},
     "repository": {
         "type": "git",
         "url": "git+https://github.com/codeceptjs/create-codeceptjs.git"