Skip to content

Commit

Permalink
Npm package has been updated
Browse files Browse the repository at this point in the history
  • Loading branch information
gedbac committed Apr 22, 2014
1 parent 6b32473 commit bf09738
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
10 changes: 10 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
node_modules
.grunt
spec
src
.travis.yml
bower.json
/di4js.js
/di4js.min.js
gruntfile.js
SpecRunner.html
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "di4js",
"main": "di4js.js",
"version": "1.0.0",
"version": "1.0.1",
"homepage": "https://github.com/gedbac/di4js",
"authors": [
"Gediminas Backevicius <gediminas.backevicius@gmail.com>"
Expand Down
2 changes: 1 addition & 1 deletion di4js.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var di = (function () {

var di = {};

di.version = '1.0.0';
di.version = '1.0.1';

di.DependencyResolverException = function (message) {
this.__name = 'DependencyResolverException';
Expand Down
2 changes: 1 addition & 1 deletion di4js.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/di4js.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

var di = {};

di.version = '1.0.0';
di.version = '1.0.1';

di.DependencyResolverException = function (message) {
this.__name = 'DependencyResolverException';
Expand Down
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "di4js",
"description": "The di4js module is dependency injection implementation in JavaScript. Dependency injection is a software design pattern that allows the removal of hard-coded dependencies and makes it possible to change them.",
"version": "1.0.0",
"version": "1.0.1",
"author": "Gediminas Backevicius <gediminas.backevicius@gmail.com>",
"bugs": {
"url": "https://github.com/gedbac/di4js/issues"
Expand All @@ -12,15 +12,17 @@
"keywords": [
"di",
"dependency",
"injection"
"injection",
"IoC",
"javascript"
],
"repository": {
"type": "git",
"url": "https://github.com/gedbac/di4js.git"
},
"main": "./lib/di4js.js",
"engines": {
"node": "*"
"node": ">=0.8"
},
"devDependencies": {
"grunt": "~0.4.4",
Expand Down

0 comments on commit bf09738

Please sign in to comment.