Skip to content

Instantly share code, notes, and snippets.

@cowboy
Created January 7, 2014 18:03
Show Gist options
  • Save cowboy/8303707 to your computer and use it in GitHub Desktop.
Save cowboy/8303707 to your computer and use it in GitHub Desktop.
npm updated wat
$ cat package.json
{
"name": "globule",
"description": "An easy-to-use wildcard globbing library.",
"version": "0.1.0",
"homepage": "https://github.com/cowboy/node-globule",
"author": {
"name": "\"Cowboy\" Ben Alman",
"url": "http://benalman.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/cowboy/node-globule.git"
},
"bugs": {
"url": "https://github.com/cowboy/node-globule/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/cowboy/node-globule/blob/master/LICENSE-MIT"
}
],
"main": "lib/globule",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt nodeunit"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.1.1",
"grunt-contrib-nodeunit": "~0.1.2",
"grunt-contrib-watch": "~0.2.0",
"grunt": "~0.4.1"
},
"keywords": [
"glob",
"file",
"match",
"mapping",
"expand",
"wildcard",
"pattern",
"sync",
"awesome"
],
"dependencies": {
"lodash": "~1.0.1",
"glob": "~3.1.21",
"minimatch": "~0.2.11"
}
}
$ npm outdated
npm http GET https://registry.npmjs.org/lodash
npm http GET https://registry.npmjs.org/minimatch
npm http GET https://registry.npmjs.org/glob
npm http 304 https://registry.npmjs.org/glob
npm http 304 https://registry.npmjs.org/minimatch
npm http 304 https://registry.npmjs.org/lodash
[email protected] node_modules/glob current=MISSING
[email protected] node_modules/minimatch current=MISSING
[email protected] node_modules/lodash current=MISSING
$ npm install --silent
[email protected] node_modules/glob
├── [email protected]
└── [email protected]
[email protected] node_modules/minimatch
├── [email protected]
└── [email protected]
[email protected] node_modules/lodash
[email protected] node_modules/grunt-contrib-jshint
└── [email protected] ([email protected], [email protected])
[email protected] node_modules/grunt-contrib-watch
└── [email protected] ([email protected])
[email protected] node_modules/grunt
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
└── [email protected] ([email protected], [email protected])
[email protected] node_modules/grunt-contrib-nodeunit
└── [email protected] ([email protected])
$ npm outdated
npm http GET https://registry.npmjs.org/minimatch
npm http GET https://registry.npmjs.org/lodash
npm http GET https://registry.npmjs.org/glob
npm http 304 https://registry.npmjs.org/minimatch
npm http 304 https://registry.npmjs.org/glob
npm http 304 https://registry.npmjs.org/lodash
$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment