]> git.r.bdr.sh - rbdr/serpentity/commitdiff
Moves tellurium to dev dependncies, fixes typo
authorBen Beltran <redacted>
Mon, 11 Aug 2014 06:42:34 +0000 (01:42 -0500)
committerBen Beltran <redacted>
Mon, 11 Aug 2014 06:42:34 +0000 (01:42 -0500)
README.md
lib/serpentity/serpentity.js
package.json

index 174c5db658f382d7497820a67a13e0622ab8f69b..434196aea06d7faed12afe3438198cae6cdf8067 100644 (file)
--- 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
 
index 2015e5c51b545886ed34ba4aba06686f0f17de1e..d1c1cb0cbfc3f70f0a89cbef249c3884020fe36a 100644 (file)
@@ -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
 
index 48a8773b4dd696b3f6b5a2325b66c9060838cbac..028bbb2e7358ba0ca8b283213a5f0a5a5257fe43 100644 (file)
@@ -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",
     "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"