Skip to content

Commit

Permalink
1.0.3 - add jsinspect and coverage check
Browse files Browse the repository at this point in the history
  • Loading branch information
mboughaba committed Jun 20, 2015
1 parent c356284 commit cb764ad
Showing 1 changed file with 58 additions and 56 deletions.
114 changes: 58 additions & 56 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,59 +1,61 @@
{
"name": "etcjs",
"version": "1.0.2",
"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 .",
"check": "jscs .",
"inspect": "jsinspect .",
"coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100 --line 100",
"validate": "npm ls"
},
"engines": {
"node": ">=0.10.x"
},
"author": "Mohamed Boughaba <mohamed.bgb@gmail.com>",
"contributors": [{
"name": "Mohamed Boughaba",
"email": "mohamed.bgb@gmail.com"
}],
"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",
"check",
"inspect",
"cover",
"coverage"
],
"repository": {
"type": "git",
"url": "https://github.com/mboughaba/etcjs.git"
},
"bugs": {
"url": "https://github.com/mboughaba/etcjs/issues"
"name": "etcjs",
"version": "1.0.3",
"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 .",
"check": "jscs .",
"inspect": "jsinspect .",
"coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100 --line 100",
"validate": "npm ls"
},
"engines": {
"node": ">=0.10.x"
},
"author": "Mohamed Boughaba <mohamed.bgb@gmail.com>",
"contributors": [
{
"name": "Mohamed Boughaba",
"email": "mohamed.bgb@gmail.com"
}
],
"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",
"check",
"inspect",
"cover",
"coverage"
],
"repository": {
"type": "git",
"url": "https://github.com/mboughaba/etcjs.git"
},
"bugs": {
"url": "https://github.com/mboughaba/etcjs/issues"
}
}

0 comments on commit cb764ad

Please sign in to comment.