-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
restructuring and first functional Grunt config
- Loading branch information
Showing
13 changed files
with
166 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "injectjs", | ||
"version": "0.0.0", | ||
"version": "0.3.0", | ||
"authors": [ | ||
"Nicolas Straub" | ||
], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,52 @@ | ||
{ | ||
"name": "injectjs", | ||
"version": "1.0.0", | ||
"description": "lightweight, small, high level dependency injector with support for multiple object lifetimes", | ||
"main": "inject.js", | ||
"scripts": { | ||
"test": "karma karma.conf.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:nstraub/injectjs.git" | ||
}, | ||
"keywords": [ | ||
"dependency", | ||
"injector", | ||
"lightweight", | ||
"inject", | ||
"lifetime", | ||
"singleton", | ||
"transient", | ||
"parent" | ||
], | ||
"author": "Nicolas Straub", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/nstraub/injectjs/issues" | ||
}, | ||
"homepage": "https://github.com/nstraub/injectjs", | ||
"devDependencies": { | ||
"karma": "~0.12.31", | ||
"karma-script-launcher": "~0.1.0", | ||
"karma-chrome-launcher": "^0.1.7", | ||
"karma-coffee-preprocessor": "^0.2.1", | ||
"karma-coverage": "^0.2.7", | ||
"karma-firefox-launcher": "^0.1.4", | ||
"karma-ie-launcher": "^0.1.5", | ||
"karma-jasmine": "^0.3.5", | ||
"karma-phantomjs-launcher": "^0.1.4", | ||
"karma-story-reporter": "~0.2.2", | ||
"grunt": "^0.4.5", | ||
"grunt-karma": "~0.8.3", | ||
"grunt-cli": "^0.1.13", | ||
"grunt-contrib-concat": "^1.0.0", | ||
"grunt-contrib-jshint": "~0.10.0", | ||
"grunt-contrib-uglify": "~0.5.0", | ||
"grunt-contrib-watch": "^0.6.1", | ||
"bower": "^1.3.12", | ||
"jasmine-core": "^2.2.0", | ||
"karma-sauce-launcher": "~0.1.8" | ||
}, | ||
"dependencies": { | ||
"lodash": "^3.5.0" | ||
} | ||
} | ||
{ | ||
"name": "injectjs", | ||
"version": "v0.3.0", | ||
"description": "lightweight, small, high level dependency injector with object lifetime management", | ||
"main": "dist/inject.js", | ||
"files": ["dist"], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/nstraub/injectjs.git" | ||
}, | ||
"keywords": [ | ||
"dependency", | ||
"injector", | ||
"lightweight", | ||
"inject", | ||
"lifetime", | ||
"singleton", | ||
"transient", | ||
"parent" | ||
], | ||
"author": "Nicolas Straub", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/nstraub/injectjs/issues" | ||
}, | ||
"homepage": "https://github.com/nstraub/injectjs", | ||
"devDependencies": { | ||
"bower": "^1.3.12", | ||
"grunt": "^0.4.5", | ||
"grunt-cli": "^0.1.13", | ||
"grunt-contrib-concat": "^1.0.0", | ||
"grunt-contrib-jshint": "~0.10.0", | ||
"grunt-contrib-uglify": "~0.5.0", | ||
"grunt-contrib-watch": "^0.6.1", | ||
"grunt-karma": "~0.8.3", | ||
"jasmine-core": "^2.2.0", | ||
"karma": "~0.12.31", | ||
"karma-chrome-launcher": "^0.1.7", | ||
"karma-coffee-preprocessor": "^0.2.1", | ||
"karma-coverage": "^0.2.7", | ||
"karma-firefox-launcher": "^0.1.4", | ||
"karma-ie-launcher": "^0.1.5", | ||
"karma-jasmine": "^0.3.5", | ||
"karma-phantomjs-launcher": "^0.1.4", | ||
"karma-sauce-launcher": "~0.1.8", | ||
"karma-script-launcher": "~0.1.0", | ||
"karma-story-reporter": "~0.2.2" | ||
}, | ||
"dependencies": { | ||
"lodash": "^3.5.0" | ||
} | ||
} |
Oops, something went wrong.