From 0348435ae59190aefd294b265da1d36c46abcde4 Mon Sep 17 00:00:00 2001 From: Marten de Vries Date: Thu, 5 Jun 2014 10:58:22 +0200 Subject: [PATCH] Gave node modules version numbers and published them on npm, small fix to the nodejs test suite, some documentation changes. --- README => README.md | 2 ++ package.json | 9 +++++---- 2 files changed, 7 insertions(+), 4 deletions(-) rename README => README.md (68%) diff --git a/README b/README.md similarity index 68% rename from README rename to README.md index bbb77a8..8339738 100644 --- a/README +++ b/README.md @@ -5,4 +5,6 @@ A PouchDB plug-in that allows you to re-use your CouchDB validate_doc_update functions on the client side. A browser version is available. +See also [pouchdb-validation's documentation](http://pythonhosted.org/Python-PouchDB/js-plugins.html#pouchdb-validation-plug-in) + [Website of this plug-in and a few others](http://python-pouchdb.marten-de-vries.nl/plugins.html) diff --git a/package.json b/package.json index 41cc788..497125d 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,6 @@ { "name": "pouchdb-validation", + "version": "1.0.0", "main": "index.js", "description": "A PouchDB plug-in that allows you to re-use your CouchDB validate_doc_update functions on the client side.", "repository": { @@ -7,12 +8,12 @@ "url": "http://bazaar.launchpad.net/~marten-de-vries/python-pouchdb/0.x" }, "dependencies": { - "couchdb-objects": "*", - "couchdb-eval": "*", - "promise-nodify": "*" + "couchdb-objects": "^0.1.0", + "couchdb-eval": "^1.0.0", + "promise-nodify": "^1.0.0" }, "devDependencies": { - "es3ify": "*" + "es3ify": "^0.1.3" }, "scripts": { "build-js": "mkdir -p ../../dist && browserify index.js -s Validation -o ../../dist/pouchdb-validation.js",