Skip to content

Commit

Permalink
chore(package): Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lgaticaq committed Dec 15, 2016
1 parent 899420d commit 7f969e0
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@
"description": "A hubot script to get fuel price in Chile from cne api",
"main": "src",
"scripts": {
"pretest": "coffeelint src test",
"test": "mocha --compilers coffee:coffee-script/register --require coffee-coverage/register-istanbul",
"posttest": "istanbul report text-summary lcov",
"coveralls": "coveralls < coverage/lcov.info"
"coveralls": "coveralls < coverage/lcov.info",
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm publish",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm publish",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm publish"
},
"engines": {
"node": ">=4"
Expand All @@ -29,16 +34,19 @@
},
"homepage": "https://github.com/lgaticaq/hubot-cne#readme",
"dependencies": {
"cne": "^1.0.0"
"cne": "^1.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.4.0",
"coffee-coverage": "^1.0.1",
"coffee-script": "^1.10.0",
"coveralls": "^2.11.9",
"hubot-test-helper": "^1.4.4",
"istanbul": "^0.4.3",
"mocha": "^3.0.0",
"nock": "^9.0.2"
"coffee-script": "^1.12.1",
"coffeelint": "^1.16.0",
"coveralls": "^2.11.15",
"generate-changelog": "^1.0.2",
"hubot-test-helper": "^1.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"proxyquire": "^1.7.10"
}
}

0 comments on commit 7f969e0

Please sign in to comment.