Skip to content

Commit

Permalink
Updated README date, devDependencies, and travis-ci environments.
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesEggers1 committed Jun 30, 2015
1 parent dfba56c commit d913721
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 10 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
@@ -1,4 +1,6 @@
language: node_js
node_js:
- 0.6
- 0.8
- 0.8
- 0.10
- 0.12
6 changes: 6 additions & 0 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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:

Expand Down
20 changes: 12 additions & 8 deletions package.json
@@ -1,27 +1,31 @@
{
"name": "requiredir",
"version": "1.0.6",
"version": "1.0.7",
"author": "James Eggers <james.r.eggers@gmail.com> (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"
}
}
}

0 comments on commit d913721

Please sign in to comment.