From d913721d4058bde1091f6cb0550f46e0809c9ea8 Mon Sep 17 00:00:00 2001 From: James Eggers Date: Tue, 30 Jun 2015 12:14:25 -0500 Subject: [PATCH] Updated README date, devDependencies, and travis-ci environments. --- .travis.yml | 4 +++- CHANGELOG.md | 6 ++++++ README.md | 2 +- package.json | 20 ++++++++++++-------- 4 files changed, 22 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8111245..885e97b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,6 @@ language: node_js node_js: - 0.6 - - 0.8 \ No newline at end of file + - 0.8 + - 0.10 + - 0.12 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index af66da3..3dfab57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ Change Log ============== +## 2015-06-30 ## +* npm package version updated to 1.0.7 +* Updated package devDependencies +* Added License to package.json. +* Updated Travis-ci to test v0.6-v0.12 +* Updated copyright date in README. ## 2012-07-12 ## * npm package version updated to 1.0.6 diff --git a/README.md b/README.md index 801c5fb..a81d43b 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ console.log("Modules can also be accessed by Array to access them in order of im (MIT) -Copyright (c) 2012 James Eggers +Copyright (c) 2015 James Eggers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/package.json b/package.json index c6844aa..fc8457f 100644 --- a/package.json +++ b/package.json @@ -1,27 +1,31 @@ { "name": "requiredir", - "version": "1.0.6", + "version": "1.0.7", "author": "James Eggers (http://www.jamesreggers.com/)", "description": "A module for importing a directory of Node.js modules and adding them into an array or as properties of the module variable.", "homepage": "https://github.com/JamesEggers1/node-requiredir", + "license": "MIT", "repository": { "type": "git", "url": "git://github.com/JamesEggers1/node-requiredir" }, "main": "./src/requiredir", "engines": { - "node": ">= 0.6.x" + "node": ">= 0.6" }, "scripts": { - "test": "mocha ./tests/requiredir-tests.js -R spec" + "test": "mocha ./tests/requiredir-tests.js -R spec" }, - "keywords": [ "require", "require directory"], + "keywords": [ + "require", + "require directory" + ], "bugs": { "url": "https://github.com/JamesEggers1/node-requiredir/issues" }, "devDependencies": { - "mocha": "1.2.1", - "should": "0.6.3", - "rimraf": "2.0.2" + "mocha": "^2.2.5", + "rimraf": "2.0.2", + "should": "^7.0.1" } -} \ No newline at end of file +}