diff --git a/README.md b/README.md
index 247c641..06f671f 100644
--- a/README.md
+++ b/README.md
@@ -71,7 +71,7 @@ category.products[0] === product; // true
## Installing
-Grab the `lib/store.js` file (Bower / NPM options coming soon).
+Grab the `dist/store.js` file (Bower / NPM options coming soon).
## Documentation
@@ -103,7 +103,7 @@ You can rebuild the the output from the source using
[babel](https://babeljs.io):
```
-babel src/store.js -m umd --module-id Store --compact true --no-comments -o lib/store.js
+babel src/store.js -m umd --module-id Store --compact true --no-comments -o dist/store.js
```
## Roadmap
diff --git a/lib/store.js b/dist/store.js
similarity index 100%
rename from lib/store.js
rename to dist/store.js
diff --git a/example/index.html b/example/index.html
index e10eedc..f44ab5f 100644
--- a/example/index.html
+++ b/example/index.html
@@ -25,7 +25,7 @@
-
+
diff --git a/package.json b/package.json
index 9385b48..3f1ca48 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "json-api-store",
"version": "0.1.0",
"description": "A lightweight library for using JSON API in the browser.",
- "main": "lib/store.js",
+ "main": "dist/store.js",
"scripts": {
"test": "node_modules/jasmine/bin/jasmine.js"
},