include lock files of bower to be able to use "bower install"

This commit is contained in:
Morris Jobke 2014-12-01 10:30:15 +01:00
parent ffd1fc42e7
commit fefeb506b2
12 changed files with 266 additions and 6 deletions

View File

@ -13,15 +13,15 @@
"tests"
],
"dependencies": {
"blueimp-md5": "1.0.1",
"handlebars": "1.3.0",
"blueimp-md5": "~1.0.1",
"handlebars": "~1.3.0",
"jcrop": "~0.9.12",
"jquery": "~1.10.0",
"moment": "~2.8.3",
"select2": "3.4.8",
"select2": "~3.4.8",
"zxcvbn": "*",
"snapjs": "2.0.0-rc1",
"snapjs": "~2.0.0-rc1",
"strengthify": "*",
"underscore": "1.6.0"
"underscore": "~1.6.0"
}
}

View File

@ -1,6 +1,5 @@
test/
src/
.bower.json
bower.json
.gitignore
.jshintrc
@ -14,6 +13,7 @@ README*
# underscore
underscore/**
!underscore/.bower.json
!underscore/underscore.js
!underscore/LICENSE
@ -28,10 +28,12 @@ moment/benchmarks
moment/locale
moment/min/**
moment/moment.js
moment/scripts
!moment/min/moment-with-locales.js
# jquery
jquery/**
!jquery/.bower.json
!jquery/jquery*
!jquery/MIT-LICENSE.txt
@ -44,10 +46,12 @@ jcrop/js/**
# handlebars
handlebars/**
!handlebars/.bower.json
!handlebars/handlebars.js
# select2
select2/**
!select2/.bower.json
!select2/select2.js
!select2/select2.css
!select2/select2.png
@ -57,6 +61,7 @@ select2/**
#zxcvbn
zxcvbn/**
!zxcvbn/.bower.json
!zxcvbn/zxcvbn.js
!zxcvbn/LICENSE.txt

53
core/vendor/blueimp-md5/.bower.json vendored Normal file
View File

@ -0,0 +1,53 @@
{
"name": "blueimp-md5",
"version": "1.0.3",
"title": "JavaScript MD5",
"description": "JavaScript MD5 implementation.",
"keywords": [
"javascript",
"md5"
],
"homepage": "https://github.com/blueimp/JavaScript-MD5",
"author": {
"name": "Sebastian Tschan",
"url": "https://blueimp.net"
},
"maintainers": [
{
"name": "Sebastian Tschan",
"url": "https://blueimp.net"
}
],
"contributors": [
{
"name": "Paul Johnston",
"url": "http://pajhome.org.uk/crypt/md5"
}
],
"repository": {
"type": "git",
"url": "git://github.com/blueimp/JavaScript-MD5.git"
},
"bugs": "https://github.com/blueimp/JavaScript-MD5/issues",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"devDependencies": {
"mocha": "1.11.0",
"expect.js": "0.2.0",
"uglify-js": "2.3.6"
},
"main": "js/md5.js",
"_release": "1.0.3",
"_resolution": {
"type": "version",
"tag": "1.0.3",
"commit": "299407012031ac6f60f832d3b5fa975fcb88b550"
},
"_source": "git://github.com/blueimp/JavaScript-MD5.git",
"_target": "~1.0.1",
"_originalSource": "blueimp-md5"
}

16
core/vendor/handlebars/.bower.json vendored Normal file
View File

@ -0,0 +1,16 @@
{
"name": "handlebars",
"version": "1.3.0",
"main": "handlebars.js",
"dependencies": {},
"homepage": "https://github.com/components/handlebars.js",
"_release": "1.3.0",
"_resolution": {
"type": "version",
"tag": "v1.3.0",
"commit": "ddd21a44be399ae4de486ddd868bacf84e92b9c4"
},
"_source": "git://github.com/components/handlebars.js.git",
"_target": "~1.3.0",
"_originalSource": "handlebars"
}

14
core/vendor/jcrop/.bower.json vendored Normal file
View File

@ -0,0 +1,14 @@
{
"name": "jcrop",
"homepage": "https://github.com/tapmodo/Jcrop",
"version": "0.9.12",
"_release": "0.9.12",
"_resolution": {
"type": "version",
"tag": "v0.9.12",
"commit": "1902fbc6afa14481dc019a17e0dcb7d62b808a98"
},
"_source": "git://github.com/tapmodo/Jcrop.git",
"_target": "~0.9.12",
"_originalSource": "jcrop"
}

21
core/vendor/jquery/.bower.json vendored Normal file
View File

@ -0,0 +1,21 @@
{
"name": "jquery",
"version": "1.10.2",
"description": "jQuery component",
"keywords": [
"jquery",
"component"
],
"main": "jquery.js",
"license": "MIT",
"homepage": "https://github.com/jquery/jquery",
"_release": "1.10.2",
"_resolution": {
"type": "version",
"tag": "1.10.2",
"commit": "16b079b164d62bd807c612806842a13bf9b04d17"
},
"_source": "git://github.com/jquery/jquery.git",
"_target": "~1.10.0",
"_originalSource": "jquery"
}

30
core/vendor/moment/.bower.json vendored Normal file
View File

@ -0,0 +1,30 @@
{
"name": "moment",
"version": "2.8.4",
"main": "moment.js",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests",
"tasks",
"component.json",
"composer.json",
"CONTRIBUTING.md",
"ender.js",
"Gruntfile.js",
"package.js",
"package.json"
],
"homepage": "https://github.com/moment/moment",
"_release": "2.8.4",
"_resolution": {
"type": "version",
"tag": "2.8.4",
"commit": "7ae59de2fc3a1298ae829f6369fe3589b2cd87f8"
},
"_source": "git://github.com/moment/moment.git",
"_target": "~2.8.3",
"_originalSource": "moment"
}

24
core/vendor/select2/.bower.json vendored Normal file
View File

@ -0,0 +1,24 @@
{
"name": "select2",
"version": "3.4.8",
"main": [
"select2.js",
"select2.css",
"select2.png",
"select2x2.png",
"select2-spinner.gif"
],
"dependencies": {
"jquery": ">= 1.7.1"
},
"homepage": "https://github.com/ivaynberg/select2",
"_release": "3.4.8",
"_resolution": {
"type": "version",
"tag": "3.4.8",
"commit": "ee0f36a47e2133b23330fbec740b2d3a17a0d9c2"
},
"_source": "git://github.com/ivaynberg/select2.git",
"_target": "~3.4.8",
"_originalSource": "select2"
}

31
core/vendor/snapjs/.bower.json vendored Normal file
View File

@ -0,0 +1,31 @@
{
"name": "Snap.js",
"description": "A Library for creating beautiful mobile shelfs in Javascript (Facebook and Path style side menus)",
"version": "2.0.0-rc1",
"author": "Jacob Kelley <jakie8@gmail.com>",
"keywords": [
"mobile shelfs",
"nav",
"menu",
"mobile",
"side menu"
],
"license": "MIT",
"main": [
"./dist/latest/snap.js",
"./dist/latest/snap.css"
],
"scripts": [
"snap.js"
],
"homepage": "https://github.com/jakiestfu/Snap.js",
"_release": "2.0.0-rc1",
"_resolution": {
"type": "version",
"tag": "v2.0.0-rc1",
"commit": "15c77da330d9e8ca580a922bc748d88553838a73"
},
"_source": "git://github.com/jakiestfu/Snap.js.git",
"_target": "~2.0.0-rc1",
"_originalSource": "snapjs"
}

19
core/vendor/strengthify/.bower.json vendored Normal file
View File

@ -0,0 +1,19 @@
{
"name": "strengthify",
"homepage": "https://github.com/MorrisJobke/strengthify",
"authors": [
"Morris Jobke <hey@morrisjobke.de>"
],
"description": "Combine jQuery and zxcvbn to create a password strength meter.",
"main": "jquery.strengthify.js",
"license": "MIT",
"_release": "f1dd3eaf28",
"_resolution": {
"type": "branch",
"branch": "master",
"commit": "f1dd3eaf289be559885325a6585f6dd6ae2fa8c3"
},
"_source": "git://github.com/MorrisJobke/strengthify.git",
"_target": "*",
"_originalSource": "strengthify"
}

33
core/vendor/underscore/.bower.json vendored Normal file
View File

@ -0,0 +1,33 @@
{
"name": "underscore",
"version": "1.6.0",
"main": "underscore.js",
"keywords": [
"util",
"functional",
"server",
"client",
"browser"
],
"ignore": [
"underscore-min.js",
"docs",
"test",
"*.yml",
"*.map",
"CNAME",
"index.html",
"favicon.ico",
"CONTRIBUTING.md"
],
"homepage": "https://github.com/jashkenas/underscore",
"_release": "1.6.0",
"_resolution": {
"type": "version",
"tag": "1.6.0",
"commit": "1f4bf626f23a99f7a676f5076dc1b1475554c8f7"
},
"_source": "git://github.com/jashkenas/underscore.git",
"_target": "~1.6.0",
"_originalSource": "underscore"
}

14
core/vendor/zxcvbn/.bower.json vendored Normal file
View File

@ -0,0 +1,14 @@
{
"name": "zxcvbn",
"main": "zxcvbn.js",
"homepage": "https://github.com/lowe/zxcvbn",
"_release": "f2a8cda13d",
"_resolution": {
"type": "branch",
"branch": "master",
"commit": "f2a8cda13d247f4956d3334ee7cbae80a2c61a97"
},
"_source": "git://github.com/lowe/zxcvbn.git",
"_target": "*",
"_originalSource": "zxcvbn"
}