major update to latest yang-js/yang-express to now support hot-pluggable data models during runtime. also enable complete event-propagation for changes to the data models on a per-model basis. fixes #2 and #3. documentation updated to reflect initial support for openapi/swagger 2.0 specification auto-generation. near-complete support for websocket/socket.io will enable dynamic change push to the client application
diff --git a/package.json b/package.json
index 66e8fa1..8125046 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "yang-cord",
-  "version": "1.0.7",
+  "version": "1.0.8",
   "description": "YANG model-driven CORD",
   "author": "Peter K. Lee <peter@corenova.com>",
   "license": "Apache-2.0",
@@ -32,8 +32,8 @@
     "minimist": "^1.2.0",
     "node-uuid": "^1.4.7",
     "superagent": "^2.0.0",
-    "yang-express": "^0.2.9",
-    "yang-js": "^0.15.5"
+    "yang-express": "^0.3.0",
+    "yang-js": "^0.15.7"
   },
   "optionalDependencies": {
     "corenova": "^1.0.0"
@@ -43,13 +43,15 @@
     "config": "^1.19.0",
     "mocha": "~2.0.1",
     "rimraf": "^2.5.2",
-    "should": "~3.1.3"
+    "should": "~3.1.3",
+    "webpack": "^1.13.1"
   },
   "main": "./lib/cord-core.js",
   "scripts": {
     "clean": "rimraf dist/* lib/*",
     "prebuild": "npm run clean -s && mkdir -p dist",
     "build:src": "coffee -o lib -c src",
+    "build:web": "webpack -p",
     "build": "npm run build:src",
     "prepublish": "npm run build",
     "pretest": "npm run build",