aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2014-08-11 01:42:34 -0500
committerBen Beltran <ben@nsovocal.com>2014-08-11 01:42:34 -0500
commit971ff307c745e394ba3fd20e9dfbd1f302736c7c (patch)
treed82e65494e02253cc59273c30267a8f03c90ddf5
parentc2c83a18d5c42264d7aea3ee1c7c91e02311a7c1 (diff)
Moves tellurium to dev dependncies, fixes typo
-rw-r--r--README.md2
-rw-r--r--lib/serpentity/serpentity.js2
-rw-r--r--package.json8
3 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 174c5db..434196a 100644
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ Remove entities or systems:
Entities are the basic object of Serpentity, and they do nothing.
- var entity = new Serpentity.entity();
+ var entity = new Serpentity.Entity();
All the behavior is added through components
diff --git a/lib/serpentity/serpentity.js b/lib/serpentity/serpentity.js
index 2015e5c..d1c1cb0 100644
--- a/lib/serpentity/serpentity.js
+++ b/lib/serpentity/serpentity.js
@@ -29,7 +29,7 @@ Remove entities or systems:
Entities are the basic object of Serpentity, and they do nothing.
- var entity = new Serpentity.entity();
+ var entity = new Serpentity.Entity();
All the behavior is added through components
diff --git a/package.json b/package.json
index 48a8773..028bbb2 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name" : "serpentity",
"description" : "A simple entity frameowrk inspired by ash",
- "version" : "0.1.0",
+ "version" : "0.1.1",
"contributors" : [
{
"name" : "Ben Beltran",
@@ -14,11 +14,11 @@
"url" : "https://github.com/benbeltran/serpentity.git"
},
"dependencies" : {
- "neon" : "2.0.x",
- "tellurium" : "2.0.x"
+ "neon" : "2.0.x"
},
"devDependencies" : {
- "colors" : "0.6.2"
+ "colors" : "0.6.2",
+ "tellurium" : "2.0.x"
},
"engines" : { "node" : ">= 0.10.0" },
"main" : "./lib/serpentity/serpentity.js"