Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grunt-local-deps-update

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-local-deps-update - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

98

package.json
{
"_args": [
[
"https://github.com/virtser/grunt-local-deps-update.git",
"/usr/local/google/home/dvirtser/projects/tp_tool/publish_tool/static"
]
],
"_from": "git+https://github.com/virtser/grunt-local-deps-update.git",
"_id": "grunt-local-deps-update@1.0.0",
"_inCache": true,
"_installable": true,
"_location": "/grunt-local-deps-update",
"_phantomChildren": {},
"_requested": {
"hosted": {
"directUrl": "https://raw.githubusercontent.com/virtser/grunt-local-deps-update/master/package.json",
"gitUrl": "git://github.com/virtser/grunt-local-deps-update.git",
"httpsUrl": "git+https://github.com/virtser/grunt-local-deps-update.git",
"shortcut": "github:virtser/grunt-local-deps-update",
"ssh": "git@github.com:virtser/grunt-local-deps-update.git",
"sshUrl": "git+ssh://git@github.com/virtser/grunt-local-deps-update.git",
"type": "github"
},
"name": null,
"raw": "https://github.com/virtser/grunt-local-deps-update.git",
"rawSpec": "https://github.com/virtser/grunt-local-deps-update.git",
"scope": null,
"spec": "git+https://github.com/virtser/grunt-local-deps-update.git",
"type": "hosted"
},
"_requiredBy": [
"#DEV:/"
],
"_resolved": "git+https://github.com/virtser/grunt-local-deps-update.git#872e668d79c6a84e81f74cba12d151562effa941",
"_shasum": "0680192c8ffb1ed876524b7e2dcf83a45ca9e387",
"_shrinkwrap": null,
"_spec": "https://github.com/virtser/grunt-local-deps-update.git",
"_where": "/usr/local/google/home/dvirtser/projects/tp_tool/publish_tool/static",
"name": "grunt-local-deps-update",
"version": "1.0.1",
"description": "Detects and updates dependencies if package.json or bower.json version changed",
"homepage": "https://github.com/virtser/grunt-local-deps-update",
"repository": "https://github.com/virtser/grunt-local-deps-update",
"author": {
"name": "David Virtser",
"email": "poison77@gmail.com",
"name": "David Virtser",
"url": "http://virtser.net"
},
"bugs": {
"url": "https://github.com/virtser/grunt-local-deps-update/issues"
},
"dependencies": {},
"description": "Detects and updates dependencies if package.json or bower.json version changed",
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-nodeunit": "~0.3.0"
},
"engines": {
"node": ">= 0.8.0"
},
"gitHead": "872e668d79c6a84e81f74cba12d151562effa941",
"homepage": "https://github.com/virtser/grunt-local-deps-update",
"keywords": [
"gruntplugin",
"update",
"autoupdate",
"bower",
"npm",
"node",
"grunt",
"gruntplugin",
"node",
"npm",
"plugin",
"update"
"plugin"
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test"
},
"licenses": [

@@ -75,18 +34,11 @@ {

],
"main": "Gruntfile.js",
"name": "grunt-local-deps-update",
"optionalDependencies": {},
"devDependencies": {
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-jshint": "~0.8.0",
"grunt": "~0.4.2",
"grunt-contrib-nodeunit": "~0.3.0"
},
"peerDependencies": {
"grunt": "~0.4.2"
},
"readme": "# grunt-local-deps-update\n\n> Detects and updates local dependencies if package.json or bower.json version changed. \nWhy? If your node_modules or bower_components folder is not under version control, then you would probably have to notify the team that the package.json or bower.json changed and everyone would have to run \"npm install\" or \"bower install\". While this workflow could work, this is not very reliable! \nNow you have grunt-local-deps-update which notfies a team member with outdated dependencies and auto install them if enabled.\n\n\n## Getting Started\nThis plugin requires Grunt.\n\nIf you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:\n\n```shell\nnpm install https://github.com/virtser/grunt-local-deps-update --save-dev\n```\n\nOnce the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:\n\n```js\ngrunt.loadNpmTasks('grunt-local-deps-update');\n```\n\n\n\n## The \"depsupdate\" task\n\n### Overview\nThe task doesn't require any configuration. \nSimply add it to your default task, or make sure it's the first task being executed.\n\n```\ngrunt.registerTask('default', ['depsupdate']);\n```\n\n### Log example\nIn case the package.json or bower.json version changed, this is what you can expect to see:\n```\n$ grunt\nRunning \"depsupdate\" task\n\nNew package.json version detected (from 0.0.2 to 0.0.3)\nRunning npm update...\n... done!\n>> Please run 'grunt' again\n\nDone, without errors.\n```\n\n### Options\n\n### Usage Examples\n\n#### Default Options\n\n```js\ngrunt.initConfig({\n autoupdate: {\n options: {\n pkgFile : '.pkg',\n npmCheck: true,\n bowerCheck: true,\n warnOnly: false\n }\n },\n})\n```\n\n## Contributing\nIn lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/).\n\n## License\nCopyright (c) 2014 Erwan Jegouzo. Licensed under the MIT license.\nCopyright (c) 2016 David Virtser. Licensed under the MIT license.\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/virtser/grunt-local-deps-update.git"
},
"scripts": {
"test": "grunt test"
},
"version": "1.0.0"
}
}

@@ -0,1 +1,3 @@

* This plugin was originally called [grunt-autoupdate](https://github.com/erwanjegouzo/grunt-autoupdate) and written by Erwan Jegouzo.
# grunt-local-deps-update

@@ -57,3 +59,3 @@

grunt.initConfig({
autoupdate: {
depsupdate: {
options: {

@@ -73,3 +75,2 @@ pkgFile : '.pkg',

## License
Copyright (c) 2014 Erwan Jegouzo. Licensed under the MIT license.
Copyright (c) 2016 David Virtser. Licensed under the MIT license.
Copyright (c) 2016 Erwan Jegouzo and David Virtser. Licensed under the MIT license.
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc