diff --git a/.versions b/.versions new file mode 100644 index 0000000..65c3c1e --- /dev/null +++ b/.versions @@ -0,0 +1,50 @@ +allow-deny@1.0.5 +babel-compiler@6.8.5 +babel-runtime@0.1.9_1 +base64@1.0.9 +binary-heap@1.0.9 +blaze@2.1.8 +blaze-tools@1.0.9 +boilerplate-generator@1.0.9 +callback-hook@1.0.9 +check@1.2.3 +ddp@1.2.5 +ddp-client@1.2.5 +ddp-common@1.2.5 +ddp-server@1.2.6 +deps@1.0.12 +diff-sequence@1.0.6 +ecmascript@0.4.6_1 +ecmascript-runtime@0.2.12 +ejson@1.0.12 +geojson-utils@1.0.9 +hazio:counter-cache@0.0.5 +html-tools@1.0.10 +htmljs@1.0.10 +id-map@1.0.8 +jquery@1.11.9 +local-test:hazio:counter-cache@0.0.5 +logging@1.0.13_1 +matb33:collection-hooks@0.8.3 +meteor@1.1.16 +minimongo@1.0.17 +modules@0.6.5 +modules-runtime@0.6.5 +mongo@1.1.9_1 +mongo-id@1.0.5 +npm-mongo@1.4.44_1 +observe-sequence@1.0.12 +ordered-dict@1.0.8 +promise@0.7.3 +random@1.0.10 +reactive-var@1.0.10 +retry@1.0.7 +routepolicy@1.0.11 +spacebars@1.0.12 +spacebars-compiler@1.0.12 +tinytest@1.0.6 +tracker@1.0.15 +ui@1.0.11 +underscore@1.0.9 +webapp@1.2.9_1 +webapp-hashing@1.0.9 diff --git a/package.js b/package.js index d41adf7..309b1cb 100644 --- a/package.js +++ b/package.js @@ -1,19 +1,20 @@ Package.describe({ summary: "Cache the counts of an associated collection", - version: "0.2.1", - git: "https://github.com/percolatestudio/meteor-counter-cache.git" + version: "0.0.5", + git: "https://github.com/hazio/meteor-counter-cache.git" }); Package.onUse(function(api) { api.use([ - 'mrt:collection-hooks@0.6.3', - 'underscore@1.0.0', - 'mongo@1.0.6' + 'matb33:collection-hooks@0.8.3', + 'underscore@1.0.9', + 'mongo@1.1.9_1' ]); api.add_files('counter-cache.js', ['client', 'server']); }); Package.onTest(function(api) { - api.use(['tinytest', 'dburles:counter-cache']); + api.use(['tinytest', 'underscore', 'mongo', 'matb33:collection-hooks@0.8.3']); api.add_files('counter-cache_tests.js', 'server'); + api.add_files('counter-cache.js', ['client', 'server']); }); diff --git a/packages.json b/packages.json new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/packages.json @@ -0,0 +1 @@ +{} diff --git a/smart.json b/smart.json index cb73575..3d58189 100644 --- a/smart.json +++ b/smart.json @@ -1,11 +1,11 @@ { "name": "counter-cache", "description": "Cache the counts of an associated collection", - "homepage": "https://github.com/percolatestudio/meteor-counter-cache", - "author": "David Burles (http://twitter.com/dburles)", - "version": "0.1.3", - "git": "https://github.com/percolatestudio/meteor-counter-cache.git", + "homepage": "https://github.com/hazio/meteor-counter-cache", + "author": "Jani Halmetoja (http://twitter.com/halmetoja)", + "version": "0.0.5", + "git": "https://github.com/hazio/meteor-counter-cache.git", "packages": { - "collection-hooks": "0.6.3" + "collection-hooks": "0.8.3" } }