From 86bab4d25d7a0ce6f27e7a8f4ff6c2f1700022bf Mon Sep 17 00:00:00 2001 From: jonschlinkert Date: Sat, 21 Feb 2015 19:42:43 -0500 Subject: [PATCH] run update --- .gitattributes | 11 ++++++++++- .gitignore | 1 + .jshintrc | 9 +++++---- LICENSE | 2 +- README.md | 2 +- index.js | 4 ++-- package.json | 14 ++++---------- test.js | 6 +++--- 8 files changed, 27 insertions(+), 22 deletions(-) diff --git a/.gitattributes b/.gitattributes index a52bd18..4a3f1d3 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,10 @@ -*.* text eol=lf \ No newline at end of file +# Enforce Unix newlines +* text eol=lf + +# binaries +*.ai binary +*.psd binary +*.jpg binary +*.gif binary +*.png binary +*.jpeg binary \ No newline at end of file diff --git a/.gitignore b/.gitignore index 5c8a697..8d1d506 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +*.DS_Store *.DS_store *.sublime-* _gh_pages diff --git a/.jshintrc b/.jshintrc index 31eb603..01134d6 100644 --- a/.jshintrc +++ b/.jshintrc @@ -1,18 +1,19 @@ { "asi": false, "boss": true, + "camelcase": true, "curly": true, "eqeqeq": true, "eqnull": true, "esnext": true, "immed": true, - "latedef": true, + "latedef": false, "laxcomma": false, + "mocha": true, "newcap": true, "noarg": true, "node": true, "sub": true, - "undef": "var", - "unused": true, - "mocha": true + "undef": true, + "unused": true } \ No newline at end of file diff --git a/LICENSE b/LICENSE index 33754da..65f90ac 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2015 Jon Schlinkert +Copyright (c) 2015, Jon Schlinkert. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 1a1652c..ab5da3a 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,6 @@ Released under the MIT license *** -_This file was generated by [verb](https://github.com/assemble/verb) on February 15, 2015._ +_This file was generated by [verb](https://github.com/assemble/verb) on February 21, 2015._ [assemble]: https://github.com/assemble/assemble diff --git a/index.js b/index.js index 3ad3597..377fcce 100644 --- a/index.js +++ b/index.js @@ -1,8 +1,8 @@ /*! * helper-resolve * - * Copyright (c) 2015 Jon Schlinkert. - * Licensed under the MIT license. + * Copyright (c) 2015, Jon Schlinkert. + * Licensed under the MIT License. */ 'use strict'; diff --git a/package.json b/package.json index 6c10f72..585730a 100644 --- a/package.json +++ b/package.json @@ -7,17 +7,11 @@ "name": "Jon Schlinkert", "url": "https://github.com/jonschlinkert" }, - "repository": { - "type": "git", - "url": "git://github.com/jonschlinkert/helper-resolve.git" - }, + "repository": "jonschlinkert/helper-resolve", "bugs": { "url": "https://github.com/jonschlinkert/helper-resolve/issues" }, - "license": { - "type": "MIT", - "url": "https://github.com/jonschlinkert/helper-resolve/blob/master/LICENSE" - }, + "license": "MIT", "files": [ "index.js" ], @@ -29,16 +23,16 @@ "test": "mocha" }, "dependencies": { + "lodash": "^3.2.0", "resolve": "^1.1.0" }, "devDependencies": { "handlebars": "^3.0.0", "jquery": "^2.1.3", - "lodash": "^3.2.0", "mocha": "*", "resolve": "^1.1.0", "should": "*", "template": "^0.9.3" }, "keywords": [] -} +} \ No newline at end of file diff --git a/test.js b/test.js index 618d91d..7a5f68f 100644 --- a/test.js +++ b/test.js @@ -1,14 +1,14 @@ /*! * helper-resolve * - * Copyright (c) 2015 Jon Schlinkert. - * Licensed under the MIT license. + * Copyright (c) 2015, Jon Schlinkert. + * Licensed under the MIT License. */ 'use strict'; var path = require('path'); -var should = require('should'); +require('should'); var handlebars = require('handlebars'); var Template = require('template'); var template = new Template();