Skip to content

Commit

Permalink
Updating Dependencies
Browse files Browse the repository at this point in the history
- Update README badges
- Update dependencies and devDependencies
- Rename npm script prepublish to prepare as npm/npm#10074
- Add npm-shrinkwrap.json in bump.
- Update Integration options
- Update Grunt bump script
  • Loading branch information
ahmader committed Feb 8, 2018
1 parent 47651f9 commit 75bb505
Show file tree
Hide file tree
Showing 4 changed files with 1,828 additions and 140 deletions.
12 changes: 10 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ module.exports = function(grunt) {
}
},
integration: {
specs: 'spec/integration/**/*.{js,coffee}'
options: {
specs: 'spec/integration/**/*.{js,coffee}'
}
}
},
coffeelint: {
Expand All @@ -38,6 +40,11 @@ module.exports = function(grunt) {
}
}
},
shrinkwrap: {
dev: false, // whether the shrinkwrap dev dependencies. Defaults to false.
dedupe: false, // whether to run dedupe before shrinkwrapping. Defaults to false.
prune: false // whether to run prune before deduping. Defaults to false.
},
bump: {
files: ['package.json'],
updateConfigs: [],
Expand All @@ -56,10 +63,11 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-coffeelint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-jasmine-bundle');
grunt.loadNpmTasks('grunt-shrinkwrap');
grunt.loadNpmTasks('grunt-bump');

grunt.registerTask('default', ['coffeelint', 'spec:unit'] );
grunt.registerTask('integration', ['coffeelint', 'spec:integration']);
grunt.registerTask('travis-ci', ['coffeelint', 'spec:unit'] );
grunt.registerTask('release', ['bump'] );
grunt.registerTask('release', ['bump-only:patch', '', 'bump-commit'] );
};
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

Zoho CRM rest api wrapper for node.js

[![Build Status](https://travis-ci.org/picatic/node-zoho.png?branch=master)](https://travis-ci.org/picatic/node-zoho)
[![Build Status](https://travis-ci.org/ahmader/node-zoho.png?branch=master)](https://travis-ci.org/ahmader/node-zoho)
[![NPM version](https://badge.fury.io/js/node-zoho.png)](http://badge.fury.io/js/node-zoho)
[![Code Climate](https://codeclimate.com/github/picatic/node-zoho.png)](https://codeclimate.com/github/picatic/node-zoho)
[![Stories in Ready](https://badge.waffle.io/picatic/node-zoho.png?label=ready&title=Ready)](https://waffle.io/picatic/node-zoho)
[![Code Climate](https://codeclimate.com/github/ahmader/node-zoho.png)](https://codeclimate.com/github/ahmader/node-zoho)
[![Stories in Ready](https://badge.waffle.io/ahmader/node-zoho.png?label=ready&title=Ready)](https://waffle.io/ahmader/node-zoho)

currently supports:
- authentication
Expand Down
Loading

0 comments on commit 75bb505

Please sign in to comment.