Skip to content

Commit

Permalink
Fixed corrupted .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
LarryBattle committed Oct 7, 2014
1 parent 8a301f2 commit c480350
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 26 deletions.
Binary file modified .gitignore
Binary file not shown.
5 changes: 5 additions & 0 deletions gulpfile.js
@@ -0,0 +1,5 @@
var gulp = require("gulp");

gulp.task("build" , function(){
console.log("building...");
});
60 changes: 34 additions & 26 deletions package.json
@@ -1,28 +1,36 @@
{
"name" : "lb-ratio",
"version" : "0.4.0",
"homepage" : "https://github.com/LarryBattle/Ratio.js",
"description" : "Provides a Fraction, Rational, and Ratio object for javascript.",
"keywords" : ["Ratio", "fraction", "rational", "numbers", "Math", "Mixed numbers"],
"author" : {
"name" : "Larry Battle",
"url" : "http://bateru.com/news/"
},
"bugs" : {
"url" : "https://github.com/LarryBattle/Ratio.js/issues?state=open"
},
"main" : "./lib/Ratio-0.4.0.js",
"repository" : {
"type" : "git",
"url" : "https://github.com/LarryBattle/Ratio.js.git"
},
"engines" : {
"node" : "*"
},
"devDependencies" : {
"jake" : "~0.5.8",
"uglify-js" : "~2.2.2",
"yuidocjs" : "~0.3.35"
},
"license" : "MIT"
"name": "lb-ratio",
"version": "0.4.0",
"homepage": "https://github.com/LarryBattle/Ratio.js",
"description": "Provides a Fraction, Rational, and Ratio object for javascript.",
"keywords": [
"Ratio",
"fraction",
"rational",
"numbers",
"Math",
"Mixed numbers"
],
"author": {
"name": "Larry Battle",
"url": "https://github.com/LarryBattle"
},
"bugs": {
"url": "https://github.com/LarryBattle/Ratio.js/issues?state=open"
},
"main": "./lib/Ratio-0.4.0.js",
"repository": {
"type": "git",
"url": "https://github.com/LarryBattle/Ratio.js.git"
},
"engines": {
"node": "*"
},
"devDependencies": {
"gulp": "~3.8.8"
},
"scripts" : {
"build" : "gulp build"
},
"license": "MIT"
}

0 comments on commit c480350

Please sign in to comment.