Skip to content

Commit

Permalink
Update package.json and bower.json
Browse files Browse the repository at this point in the history
Remove component.json
  • Loading branch information
bdougherty committed May 2, 2015
1 parent 7296bef commit 1def6be
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 35 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Expand Up @@ -20,7 +20,7 @@ module.exports = function(grunt) {
uglify: {
unminified: {
options: {
banner: '/*! <%= pkg.name %>\n * v<%= pkg.version %> - <%= grunt.template.today("yyyy-mm-dd") %>\n * <%= pkg.homepage %>\n * Copyright <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>; <%= _.pluck(pkg.licenses, "type").join(", ") %> License\n */\n',
banner: '/*! <%= pkg.name %>\n * v<%= pkg.version %> - <%= grunt.template.today("yyyy-mm-dd") %>\n * <%= pkg.homepage %>\n * Copyright <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>; <%= pkg.license %> License\n */\n',
mangle: false,
compress: false,
preserveComments: 'some',
Expand All @@ -32,7 +32,7 @@ module.exports = function(grunt) {
},
minified: {
options: {
banner: '// <%= pkg.name %> v<%= pkg.version %> - <%= grunt.template.today("yyyy-mm-dd") %> - <%= _.pluck(pkg.licenses, "type").join(", ") %> License',
banner: '// <%= pkg.name %> v<%= pkg.version %> - <%= grunt.template.today("yyyy-mm-dd") %> - <%= pkg.license %> License',
sourceMap: true
},
files: {
Expand Down
30 changes: 25 additions & 5 deletions bower.json
@@ -1,7 +1,27 @@
{
"name": "BigScreen",
"version": "2.0.4",
"main": "bigscreen.js",
"description": "A simple library for using the JavaScript Fullscreen API.",
"license": "Apache 2.0"
"name": "BigScreen",
"description": "A simple library for using the JavaScript Fullscreen API.",
"main": "bigscreen.min.js",
"moduleType": [
"amd",
"globals",
"node"
],
"license": "MIT",
"ignore": [
"demo",
"node_modules",
"test"
],
"keywords": [
"fullscreen",
"video"
],
"authors": [
"Brad Dougherty <me@brad.is> (https://brad.is)"
],
"repository": {
"type": "git",
"url": "git://github.com/bdougherty/BigScreen.git"
}
}
11 changes: 0 additions & 11 deletions component.json

This file was deleted.

30 changes: 13 additions & 17 deletions package.json
Expand Up @@ -2,26 +2,22 @@
"name": "BigScreen",
"version": "2.0.4",
"description": "A simple library for using the JavaScript Fullscreen API.",
"keywords": [
"fullscreen"
],
"homepage": "https://github.com/bdougherty/BigScreen",
"bugs": "https://github.com/bdougherty/BigScreen/issues",
"author": {
"name": "Brad Dougherty",
"email": "hi@brad.is",
"url": "http://brad.is"
},
"repository": {
"type": "git",
"url": "git@github.com:bdougherty/BigScreen.git"
},
"licenses": [
"author": "Brad Dougherty <me@brad.is>",
"license": "MIT",
"contributors": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
"name": "Brad Dougherty",
"email": "me@brad.is",
"url": "https://brad.is"
}
],
"main": "bigscreen.min.js",
"repository": "bdougherty/BigScreen",
"bugs": "https://github.com/bdougherty/BigScreen/issues",
"keywords": [
"fullscreen",
"video"
],
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-uglify": "^0.9.1",
Expand Down

0 comments on commit 1def6be

Please sign in to comment.