Skip to content

Commit

Permalink
Change node engine requirement.
Browse files Browse the repository at this point in the history
    change node engine requirement in package.json.
    support for node 0.8 was dropped due to failing travis ci test.
  • Loading branch information
mboughaba committed Jun 6, 2015
1 parent 7d9c006 commit b2117fd
Showing 1 changed file with 49 additions and 51 deletions.
100 changes: 49 additions & 51 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,54 +1,52 @@
{
"name": "etcjs",
"version": "1.0.1",
"private": false,
"description": "Simple stupid node.js configuration module",
"main": "lib/etcjs",
"scripts": {
"start": "node bin/init",
"test": "mocha",
"test-watch": "mocha --opts ./test/mocha-watch.opts",
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly",
"lint": "jshint ."
},
"engines": {
"node": ">=0.8.x"
},
"author": "Mohamed Boughaba <[email protected]>",
"contributors": [
{
"name": "Mohamed Boughaba",
"email": "[email protected]"
"name": "etcjs",
"version": "1.0.1",
"private": false,
"description": "Simple stupid node.js configuration module",
"main": "lib/etcjs",
"scripts": {
"start": "node bin/init",
"test": "mocha",
"test-watch": "mocha --opts ./test/mocha-watch.opts",
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly",
"lint": "jshint ."
},
"engines": {
"node": ">=0.10.x"
},
"author": "Mohamed Boughaba <[email protected]>",
"contributors": [{
"name": "Mohamed Boughaba",
"email": "[email protected]"
}],
"license": "MIT",
"dependencies": {
"debug": "^2.2.0"
},
"devDependencies": {
"growl": "^1.8.1",
"istanbul": "^0.3.14",
"mocha": "^2.2.5",
"precommit-hook": "latest",
"should": "^6.0.3"
},
"keywords": [
"etc",
"js",
"configuration",
"node",
"simple"
],
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/mboughaba/etcjs.git"
},
"bugs": {
"url": "https://github.com/mboughaba/etcjs/issues"
}
],
"license": "MIT",
"dependencies": {
"debug": "^2.2.0"
},
"devDependencies": {
"growl": "^1.8.1",
"istanbul": "^0.3.14",
"mocha": "^2.2.5",
"precommit-hook": "latest",
"should": "^6.0.3"
},
"keywords": [
"etc",
"js",
"configuration",
"node",
"simple"
],
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/mboughaba/etcjs.git"
},
"bugs": {
"url": "https://github.com/mboughaba/etcjs/issues"
}
}

0 comments on commit b2117fd

Please sign in to comment.