Last active
September 8, 2017 11:22
-
-
Save andsens/e5d5a05f42c855066a02762bf3798013 to your computer and use it in GitHub Desktop.
`npm list --json` when package-lock.json is absent and present
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm list --json | |
{ | |
"name": "@secoya/rabbitmq-tools", | |
"version": "0.1.8", | |
"problems": [ | |
"missing: [email protected], required by @secoya/[email protected]", | |
"missing: [email protected], required by @secoya/[email protected]", | |
"missing: [email protected], required by [email protected]", | |
"missing: [email protected], required by [email protected]", | |
"missing: [email protected], required by [email protected]", | |
"missing: [email protected], required by [email protected]", | |
"missing: [email protected], required by [email protected]", | |
"missing: [email protected], required by [email protected]", | |
"missing: [email protected], required by [email protected]", | |
"missing: [email protected], required by [email protected]", | |
"missing: [email protected], required by [email protected]", | |
"missing: [email protected], required by [email protected]", | |
"missing: [email protected], required by [email protected]" | |
], | |
"dependencies": { | |
"amqplib": { | |
"version": "0.4.2", | |
"from": "[email protected]", | |
"resolved": "https://registry.npmjs.org/amqplib/-/amqplib-0.4.2.tgz", | |
"problems": [ | |
"missing: [email protected], required by [email protected]", | |
"missing: [email protected], required by [email protected]", | |
"missing: [email protected], required by [email protected]", | |
"missing: [email protected], required by [email protected]", | |
"missing: [email protected], required by [email protected]", | |
"missing: [email protected], required by [email protected]", | |
"missing: [email protected], required by [email protected]", | |
"missing: [email protected], required by [email protected]", | |
"missing: [email protected], required by [email protected]" | |
], | |
"dependencies": { | |
"bitsyntax": { | |
"version": "0.0.4", | |
"from": "[email protected]", | |
"resolved": "https://registry.npmjs.org/bitsyntax/-/bitsyntax-0.0.4.tgz", | |
"problems": [ | |
"missing: [email protected], required by [email protected]" | |
], | |
... | |
"when": { | |
"version": "3.6.4", | |
"from": "[email protected]", | |
"resolved": "https://registry.npmjs.org/when/-/when-3.6.4.tgz" | |
} | |
} | |
}, | |
"babel-runtime": { | |
"version": "6.9.2", | |
"from": "[email protected]", | |
"resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.9.2.tgz", | |
"problems": [ | |
"missing: [email protected], required by [email protected]", | |
"missing: [email protected], required by [email protected]" | |
], | |
"dependencies": { | |
"core-js": { | |
"version": "2.5.1", | |
"from": "[email protected]", | |
"resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.1.tgz" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm list --json | |
{ | |
"name": "@secoya/rabbitmq-tools", | |
"version": "0.1.8", | |
"problems": [ | |
"missing: [email protected], required by @secoya/[email protected]", | |
"missing: [email protected], required by @secoya/[email protected]" | |
], | |
"dependencies": { | |
"amqplib": { | |
"required": "0.4.2", | |
"missing": true | |
}, | |
"babel-runtime": { | |
"required": "6.9.2", | |
"missing": true | |
} | |
} | |
} | |
npm ERR! missing: [email protected], required by @secoya/[email protected] | |
npm ERR! missing: [email protected], required by @secoya/[email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment