Fixes: U4-5918 Update Underscore.js and also updates our usage of bower with the correct grunt-bower plugin, this massively simplifies bower usage and paves the way to start using bower for all JS components.

This commit is contained in:
Shannon
2015-01-02 14:25:11 +11:00
parent a68fed42ad
commit 201464cb44
19 changed files with 516 additions and 1715 deletions

View File

@@ -1,22 +1,34 @@
{
"name": "Umbraco",
"version": "7",
"homepage": "https://github.com/umbraco/Umbraco-CMS",
"authors": [
"Shannon <sdeminick@umbraco.com>"
],
"description": "Umbraco CMS",
"license": "MIT",
"private": true,
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"typeahead.js": "~0.10.5",
"rgrove-lazyload": "*"
}
"name": "Umbraco",
"version": "7",
"homepage": "https://github.com/umbraco/Umbraco-CMS",
"authors": [
"Shannon <sdeminick@umbraco.com>"
],
"description": "Umbraco CMS",
"license": "MIT",
"private": true,
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"typeahead.js": "~0.10.5",
"underscore": "~1.7.0",
"rgrove-lazyload": "*"
},
"exportsOverride": {
"rgrove-lazyload": {
"": "lazyload.js"
},
"typeahead.js": {
"": "dist/typeahead.bundle.min.js"
},
"underscore": {
"": "underscore-min.{js,map}"
}
}
}