Merge branch 'master' of github.com:jspm/registry

This commit is contained in:
guybedford
2013-11-26 21:44:56 +02:00
8 changed files with 70 additions and 20 deletions
@@ -0,0 +1,7 @@
{
"main": "jquery.cookie",
"files": ["jquery.cookie.js"],
"buildConfig": {
"uglify": true
}
}
@@ -2,7 +2,7 @@
"main": "chosen.jquery.js",
"files": ["chosen.jquery.js", "chosen.css", "chosen-sprite.png", "chosen-sprite@2x.png"],
"shim": {
"chosen.jquery": ["./chosen.css!", "jquery@2.0"]
"chosen.jquery": ["./chosen.css!", "jquery"]
},
"buildConfig": { "uglify": true }
}
}
@@ -1,14 +0,0 @@
{
"main": "backbone",
"files": ["backbone.js"],
"dependencyMap": {
"jquery": "jquery@2.0",
"underscore": "underscore@1.5"
},
"shim": {
"backbone": ["jquery", "underscore"]
},
"buildConfig": {
"uglify": "true"
}
}
@@ -0,0 +1,6 @@
{
"files": ["moment.js"],
"buildConfig": {
"uglify": true
}
}
@@ -1,7 +1,13 @@
{
"main": "js/bootstrap",
"directories": {
"lib": "dist"
},
"shim": {
"js/bootstrap": ["jquery@2.0"]
"js/bootstrap": {
"imports": "jquery",
"exports": "$"
}
},
"buildConfig": {
"uglify": true
@@ -0,0 +1,40 @@
{
"main": "foundation",
"entrypoints": [
"abide",
"accordion",
"alert",
"clearing",
"dropdown",
"interchange",
"joyride",
"magellan",
"offcanvas",
"orbit",
"reveal",
"tab",
"tooltip",
"topbar"
],
"map": {
"*": "js/foundation/foundation.*",
"foundation": "js/foundation/foundation"
},
"shim": {
"js/foundation/foundation.*": "./foundation",
"js/foundation/foundation": ["jquery", "../vendor/custom.modernizr"]
},
"ignore": [
"js/foundation.min.js",
"scss",
"js/vendor/jquery.cookie.js",
"js/vendor/jquery.js",
"js/vendor/fastclick.js",
"js/vendor/jquery.autocomplete.js",
"js/vendor/placeholder.js"
],
"css": ["css/normalize.css", "css/foundation.css"],
"buildConfig": {
"uglify": true
}
}
+3 -1
View File
@@ -2,7 +2,9 @@
"main": "d3.js",
"files": ["d3.js"],
"shim": {
"exports": "d3"
"d3": {
"exports": "d3"
}
},
"buildConfig": {
"uglify": true
+5 -2
View File
@@ -8,17 +8,20 @@
"angular": "cdnjs:angular.js",
"angular-ui": "cdnjs:angular-ui/angular-ui",
"angularFire": "github:firebase/angularFire",
"backbone": "github:jashkenas/backbone",
"backbone": "npm:backbone",
"backbone.babysitter": "github:marionettejs/backbone.babysitter",
"backbone.wreqr": "github:marionettejs/backbone.wreqr",
"bootstrap": "github:twbs/bootstrap",
"chosen": "github:harvesthq/chosen",
"d3": "npm:mbostock/d3",
"d3": "npm:d3",
"font-awesome": "npm:font-awesome",
"foundation": "github:zurb/bower-foundation",
"jquery": "github:components/jquery",
"jquery-file-upload": "github:blueimp/jQuery-File-Upload",
"jquery.cookie": "github:carhartl/jquery-cookie",
"kickstrap": "github:ajkochanowicz/Kickstrap",
"marionette": "github:marionettejs/backbone.marionette",
"moment": "github:moment/moment",
"tinygrowl": "github:ajkochanowicz/tinygrowl",
"three.js": "cdnjs:three.js",
"underscore": "npm:underscore",