Skip to content

Commit

Permalink
version 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
smagch committed Sep 26, 2013
1 parent 3078686 commit ef99286
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
11 changes: 11 additions & 0 deletions component.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "simple-lru",
"version": "0.0.1",
"repo": "smagch/simple-lru",
"description": "minimal Least Recently Used Cache",
"keywords": ["cache", "LRU"],
"scripts": ["index.js"],
"main": "index.js",
"dependencies": {},
"license": "MIT"
}
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
window.SimpleLRU = SimpleLRU;
}

SimpleLRU.version = '0.0.1';

/**
* Simple mixin utility
* @api private
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{
"name": "simple-lru",
"description": "minimal Least Recently Used Cache",
"version": "0.0.1",
"keywords": ["cache", "LRU"],
"author": "Tomoya Shimaguchi <[email protected]>",
"scripts": {
"test": "make test"
},
"main": "index.js",
"repository": "",
"repository": "git://github.com/smagch/simple-lru.git",
"devDependencies": {
"mocha": "~1",
"expect.js": "*",
Expand Down

0 comments on commit ef99286

Please sign in to comment.