Skip to content

Commit

Permalink
update engines to a modern version of node
Browse files Browse the repository at this point in the history
2.4.0 and greater will be node 0.8 and higher only
  • Loading branch information
atmos committed Jan 9, 2013
1 parent 569cb5d commit 474981a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
8 changes: 6 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "hubot",
"version": "2.3.5",
"version": "2.4.0",
"author": "hubot",
"keywords": "github hubot campfire bot",
"description": "A simple helpful Robot for your Company",
Expand All @@ -23,10 +23,14 @@
"connect_router": "1.8.6"
},

"engines": {
"node": ">= 0.8.x",
"npm": "1.1.x"
},

"main": "./index",

"bin": {
"hubot": "./bin/hubot"
}
}

10 changes: 5 additions & 5 deletions src/templates/package.json
@@ -1,6 +1,6 @@
{
"name": "hosted-hubot",
"version": "2.3.5",
"version": "2.4.0",
"author": "GitHub Inc.",
"keywords": "github hubot campfire bot",
"description": "A simple helpful Robot for your Company",
Expand All @@ -15,14 +15,14 @@
},

"dependencies": {
"hubot": "2.3.2",
"hubot": "2.4.0",
"hubot-scripts": ">= 2.1.0",
"optparse": "1.0.3"
},

"engines": {
"node": "0.6.x",
"npm": "1.0.x"
}
"node": ">= 0.8.x",
"npm": "1.1.x"
},
}

0 comments on commit 474981a

Please sign in to comment.