diff --git a/package.json b/package.json
index ec5174a..79f54a9 100644
--- a/package.json
+++ b/package.json
@@ -1,8 +1,8 @@
 {
-  "name": "kickoff-grid.css",
+  "name": "@kickoff/grid.css",
   "title": "Kickoff’s CSS Grid Module",
   "description": "Simple powerful flexbox grid with float fallbacks",
-  "version": "1.2.0",
+  "version": "1.2.1",
   "homepage": "http://trykickoff.com",
   "repo": "https://github.com/trykickoff/kickoff-grid.css",
   "main": "index.css",
@@ -38,9 +38,8 @@
     "node": ">=4.0"
   },
   "dependencies": {
-    "eyeglass": "^1.1.2",
-    "include-media": "^1.4.8",
-    "kickoff-utils.scss": "^2.0.1"
+    "@kickoff/utils.scss": "^3.1.0",
+    "include-media": "^1.4.8"
   },
   "devDependencies": {
     "autoprefixer": "^6.4.0",
diff --git a/readme.md b/readme.md
index 2f37761..3b2318c 100755
--- a/readme.md
+++ b/readme.md
@@ -1,16 +1,20 @@
-# kickoff-grid.css
+# @kickoff/grid.css
 > A simple, fully responsive, grid framework that can help you build complex layouts very easily.
 > Works in combination with Sass or standard CSS
 
 
-[![npm version](https://badge.fury.io/js/kickoff-grid.css.svg)](https://badge.fury.io/js/kickoff-grid.css)
+[![npm version](https://badge.fury.io/js/@kickoff/grid.css.svg)](https://badge.fury.io/js/@kickoff/grid.css)
 
-[![NPM](https://nodei.co/npm/kickoff-grid.css.png)](https://nodei.co/npm/kickoff-grid.css/)
+[![NPM](https://nodei.co/npm/@kickoff/grid.css.png)](https://nodei.co/npm/@kickoff/grid.css/)
 
 ## Install
 
 ```
-npm install kickoff-grid.css --save
+npm install @kickoff/grid.css --save
+
+or
+
+yarn add @kickoff/grid.css
 ```
 
 ## Importing into your styles
@@ -25,7 +29,7 @@ This is similar to how you would import modules in JavaScript using NPM.
 
 Alternatively, you can download the source files from Github and include them as you would normally.  If you would like to do this, you will also need to download and include the [Kickoff Utils](https://github.com/TryKickoff/kickoff-utils.scss), as the grid relies on some of the functions it provides.
 
-Finally, if you just want some straight up CSS, you can either grab a copy of the [generated CSS file – index.css](https://github.com/TryKickoff/kickoff-grid.css/blob/master/index.css) which is based off our standard variables, or you can generate your own by downloading the repo, changing the variables in `scss/_grid-variables.scss` file and recompiling the code using Sass.
+Finally, if you just want some straight up CSS, you can either grab a copy of the [generated CSS file – index.css](https://github.com/TryKickoff/@kickoff/grid.css/blob/master/index.css) which is based off our standard variables, or you can generate your own by downloading the repo, changing the variables in `scss/_grid-variables.scss` file and recompiling the code using Sass.
 
 ## Custom Grid Variables
 
diff --git a/scss/index.scss b/scss/index.scss
index be8ec81..d469709 100755
--- a/scss/index.scss
+++ b/scss/index.scss
@@ -9,11 +9,11 @@
  * Breakpoint stacking
  */
 
-@import "kickoff-utils"; // https://github.com/TryKickoff/kickoff-utils.scss
+@import "../../utils.scss/scss/index"; // https://github.com/TryKickoff/kickoff-utils.scss
 
 /* Import Grid helpers and mixins */
 @import 'grid-variables';
-@import "include-media"; // http://include-media.com
+@import "../../../include-media/dist/include-media"; // http://include-media.com
 @import 'grid-helpers';
 
 /**