Browse Source

'111'

master
1549469775 5 years ago
parent
commit
424c7a9f4d
  1. 4
      app.js
  2. 82
      bin/xyx
  3. 0
      changelog
  4. 23
      node_modules/ansi-escapes/package.json
  5. 23
      node_modules/ansi-regex/package.json
  6. 23
      node_modules/ansi-styles/package.json
  7. 27
      node_modules/chalk/package.json
  8. 23
      node_modules/chardet/package.json
  9. 26
      node_modules/cli-cursor/package.json
  10. 23
      node_modules/cli-spinners/package.json
  11. 23
      node_modules/cli-width/package.json
  12. 23
      node_modules/clone/package.json
  13. 23
      node_modules/color-convert/package.json
  14. 13
      node_modules/color-name/package.json
  15. 22
      node_modules/commander/package.json
  16. 23
      node_modules/defaults/package.json
  17. 23
      node_modules/emoji-regex/package.json
  18. 23
      node_modules/escape-string-regexp/package.json
  19. 23
      node_modules/external-editor/package.json
  20. 23
      node_modules/figures/package.json
  21. 23
      node_modules/has-flag/package.json
  22. 23
      node_modules/iconv-lite/package.json
  23. 22
      node_modules/inquirer/package.json
  24. 23
      node_modules/is-fullwidth-code-point/package.json
  25. 23
      node_modules/is-interactive/package.json
  26. 23
      node_modules/is-promise/package.json
  27. 23
      node_modules/lodash/package.json
  28. 23
      node_modules/log-symbols/package.json
  29. 23
      node_modules/mimic-fn/package.json
  30. 13
      node_modules/mute-stream/package.json
  31. 23
      node_modules/onetime/package.json
  32. 22
      node_modules/ora/package.json
  33. 23
      node_modules/os-tmpdir/package.json
  34. 23
      node_modules/restore-cursor/package.json
  35. 23
      node_modules/run-async/package.json
  36. 23
      node_modules/rxjs/package.json
  37. 23
      node_modules/safer-buffer/package.json
  38. 23
      node_modules/signal-exit/package.json
  39. 23
      node_modules/string-width/node_modules/strip-ansi/package.json
  40. 23
      node_modules/string-width/package.json
  41. 23
      node_modules/strip-ansi/node_modules/ansi-regex/package.json
  42. 26
      node_modules/strip-ansi/package.json
  43. 23
      node_modules/supports-color/package.json
  44. 23
      node_modules/through/package.json
  45. 23
      node_modules/tmp/package.json
  46. 23
      node_modules/tslib/package.json
  47. 23
      node_modules/type-fest/package.json
  48. 23
      node_modules/wcwidth/package.json
  49. 4
      package-lock.json
  50. 11
      package.json
  51. 5
      readme
  52. 59
      util.js

4
app.js

@ -14,7 +14,7 @@ const haveGit = fs.existsSync('./.git');
* 2. 添加GIT源 * 2. 添加GIT源
*/ */
// 检查git是否干净
function isClean() { function isClean() {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
exec('git status', function (error, stdout, stderr) { exec('git status', function (error, stdout, stderr) {
@ -32,7 +32,7 @@ function isClean() {
}) })
}) })
} }
// 获取当前所在分支
function getBranch() { function getBranch() {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
exec('git branch', function (error, stdout, stderr) { exec('git branch', function (error, stdout, stderr) {

82
bin/xyx

@ -0,0 +1,82 @@
#!/usr/bin/env node
const inquirer = require('inquirer');
const program = require('commander');
const util = require('../util')
const git_util = require('../git_util.js');
program
.version(require('../package.json').version, '-v, --version') // 定义版本信息
.usage('<command> [options]'); // 定义命令用法
program
.command('check <command> [options]', {
noHelp: false,
isDefault: true
})
.description('检查状态') // 给rm命令添加描述信息,获取命令帮助信息的时候会显示
.option('--rb', '查看远程分支')
.action(async (options, cmd) => { // 对应命令的处理函数
let currentPath = process.cwd();
let isClean = await util._isClean();
console.log('当前节点是否干净?', isClean);
let branch = await util._getBranch();
console.log('当前所在分支:', branch);
let remote = await util._getAllRemote();
console.log('所有远程源:', remote);
if (cmd.rb) {
console.log('所有分支');
let info = await util.exec('git branch -a');
console.log(info);
}
// let info = await util.exec('git status');
});
program
.command('sync')
.description('提交所有源')
.action(async (options, cmd) => { // 对应命令的处理函数
// let currentPath = process.cwd();
let remote = await util._getAllRemote();
if (remote.length > 0) {
console.log('所有远程源:', remote);
inquirer.prompt([{
type: 'confirm', // 问题类型,包括input,number,confirm,list,rawlist,password
name: 'all',
message: '是否提交所有源', // 问题
default: true // 默认值
}]).then(async answers => {
if (answers.all) {
// 所有源提交
inquirer.prompt([{
type: 'input',
name: 'msg',
message: '请输入需要提交的消息', // 问题
default: '', // 默认值
validate: (input) => {
if (input.length == 0) { //
return '消息不能为空'
}
return true;
}
}]).then(async answers => {
let msg = answers.msg;
let branch = await util._getBranch();; //当前分支
for (let i = 0; i < remote.length; i++) {
const o = remote[i];
let isclean = await util._isClean();
if (!isclean) {
await git_util.all(msg, o, branch);
} else {
await git_util.push(o, branch);
}
}
});
}
})
} else {
console.log('请添加源');
}
// let info = await util.exec('git status');
});
program.parse(process.argv); // commander的入口欧,传入命令行参数执行解析

0
changelog

23
node_modules/ansi-escapes/package.json

@ -1,27 +1,32 @@
{ {
"_from": "ansi-escapes@^4.2.1", "_args": [
[
"ansi-escapes@4.2.1",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "ansi-escapes@4.2.1",
"_id": "ansi-escapes@4.2.1", "_id": "ansi-escapes@4.2.1",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-Cg3ymMAdN10wOk/VYfLV7KCQyv7EDirJ64500sU7n9UlmioEtDuU5Gd+hj73hXSU/ex7tHJSssmyftDdkMLO8Q==", "_integrity": "sha512-Cg3ymMAdN10wOk/VYfLV7KCQyv7EDirJ64500sU7n9UlmioEtDuU5Gd+hj73hXSU/ex7tHJSssmyftDdkMLO8Q==",
"_location": "/ansi-escapes", "_location": "/ansi-escapes",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "ansi-escapes@^4.2.1", "raw": "ansi-escapes@4.2.1",
"name": "ansi-escapes", "name": "ansi-escapes",
"escapedName": "ansi-escapes", "escapedName": "ansi-escapes",
"rawSpec": "^4.2.1", "rawSpec": "4.2.1",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^4.2.1" "fetchSpec": "4.2.1"
}, },
"_requiredBy": [ "_requiredBy": [
"/inquirer" "/inquirer"
], ],
"_resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.2.1.tgz", "_resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.2.1.tgz",
"_shasum": "4dccdb846c3eee10f6d64dea66273eab90c37228", "_spec": "4.2.1",
"_spec": "ansi-escapes@^4.2.1", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\inquirer",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -30,11 +35,9 @@
"bugs": { "bugs": {
"url": "https://github.com/sindresorhus/ansi-escapes/issues" "url": "https://github.com/sindresorhus/ansi-escapes/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"type-fest": "^0.5.2" "type-fest": "^0.5.2"
}, },
"deprecated": false,
"description": "ANSI escape codes for manipulating the terminal", "description": "ANSI escape codes for manipulating the terminal",
"devDependencies": { "devDependencies": {
"@types/node": "^12.0.7", "@types/node": "^12.0.7",

23
node_modules/ansi-regex/package.json

@ -1,27 +1,32 @@
{ {
"_from": "ansi-regex@^5.0.0", "_args": [
[
"ansi-regex@5.0.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "ansi-regex@5.0.0",
"_id": "ansi-regex@5.0.0", "_id": "ansi-regex@5.0.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", "_integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
"_location": "/ansi-regex", "_location": "/ansi-regex",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "ansi-regex@^5.0.0", "raw": "ansi-regex@5.0.0",
"name": "ansi-regex", "name": "ansi-regex",
"escapedName": "ansi-regex", "escapedName": "ansi-regex",
"rawSpec": "^5.0.0", "rawSpec": "5.0.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^5.0.0" "fetchSpec": "5.0.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/string-width/strip-ansi" "/string-width/strip-ansi"
], ],
"_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", "_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
"_shasum": "388539f55179bf39339c81af30a654d69f87cb75", "_spec": "5.0.0",
"_spec": "ansi-regex@^5.0.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\string-width\\node_modules\\strip-ansi",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -30,8 +35,6 @@
"bugs": { "bugs": {
"url": "https://github.com/chalk/ansi-regex/issues" "url": "https://github.com/chalk/ansi-regex/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "Regular expression for matching ANSI escape codes", "description": "Regular expression for matching ANSI escape codes",
"devDependencies": { "devDependencies": {
"ava": "^2.4.0", "ava": "^2.4.0",

23
node_modules/ansi-styles/package.json

@ -1,27 +1,32 @@
{ {
"_from": "ansi-styles@^3.2.1", "_args": [
[
"ansi-styles@3.2.1",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "ansi-styles@3.2.1",
"_id": "ansi-styles@3.2.1", "_id": "ansi-styles@3.2.1",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "_integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"_location": "/ansi-styles", "_location": "/ansi-styles",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "ansi-styles@^3.2.1", "raw": "ansi-styles@3.2.1",
"name": "ansi-styles", "name": "ansi-styles",
"escapedName": "ansi-styles", "escapedName": "ansi-styles",
"rawSpec": "^3.2.1", "rawSpec": "3.2.1",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^3.2.1" "fetchSpec": "3.2.1"
}, },
"_requiredBy": [ "_requiredBy": [
"/chalk" "/chalk"
], ],
"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"_shasum": "41fbb20243e50b12be0f04b8dedbf07520ce841d", "_spec": "3.2.1",
"_spec": "ansi-styles@^3.2.1", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\chalk",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -33,11 +38,9 @@
"bugs": { "bugs": {
"url": "https://github.com/chalk/ansi-styles/issues" "url": "https://github.com/chalk/ansi-styles/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"color-convert": "^1.9.0" "color-convert": "^1.9.0"
}, },
"deprecated": false,
"description": "ANSI escape codes for styling strings in the terminal", "description": "ANSI escape codes for styling strings in the terminal",
"devDependencies": { "devDependencies": {
"ava": "*", "ava": "*",

27
node_modules/chalk/package.json

@ -1,37 +1,42 @@
{ {
"_from": "chalk@^2.4.2", "_args": [
[
"chalk@2.4.2",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "chalk@2.4.2",
"_id": "chalk@2.4.2", "_id": "chalk@2.4.2",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "_integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"_location": "/chalk", "_location": "/chalk",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "chalk@^2.4.2", "raw": "chalk@2.4.2",
"name": "chalk", "name": "chalk",
"escapedName": "chalk", "escapedName": "chalk",
"rawSpec": "^2.4.2", "rawSpec": "2.4.2",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^2.4.2" "fetchSpec": "2.4.2"
}, },
"_requiredBy": [ "_requiredBy": [
"/inquirer" "/inquirer",
"/log-symbols",
"/ora"
], ],
"_resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "_resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"_shasum": "cd42541677a54333cf541a49108c1432b44c9424", "_spec": "2.4.2",
"_spec": "chalk@^2.4.2", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\inquirer",
"bugs": { "bugs": {
"url": "https://github.com/chalk/chalk/issues" "url": "https://github.com/chalk/chalk/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"ansi-styles": "^3.2.1", "ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5", "escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0" "supports-color": "^5.3.0"
}, },
"deprecated": false,
"description": "Terminal string styling done right", "description": "Terminal string styling done right",
"devDependencies": { "devDependencies": {
"ava": "*", "ava": "*",

23
node_modules/chardet/package.json

@ -1,27 +1,32 @@
{ {
"_from": "chardet@^0.7.0", "_args": [
[
"chardet@0.7.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "chardet@0.7.0",
"_id": "chardet@0.7.0", "_id": "chardet@0.7.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", "_integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==",
"_location": "/chardet", "_location": "/chardet",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "chardet@^0.7.0", "raw": "chardet@0.7.0",
"name": "chardet", "name": "chardet",
"escapedName": "chardet", "escapedName": "chardet",
"rawSpec": "^0.7.0", "rawSpec": "0.7.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^0.7.0" "fetchSpec": "0.7.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/external-editor" "/external-editor"
], ],
"_resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", "_resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
"_shasum": "90094849f0937f2eedc2425d0d28a9e5f0cbad9e", "_spec": "0.7.0",
"_spec": "chardet@^0.7.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\external-editor",
"author": { "author": {
"name": "Dmitry Shirokov", "name": "Dmitry Shirokov",
"email": "deadrunk@gmail.com" "email": "deadrunk@gmail.com"
@ -29,7 +34,6 @@
"bugs": { "bugs": {
"url": "http://github.com/runk/node-chardet/issues" "url": "http://github.com/runk/node-chardet/issues"
}, },
"bundleDependencies": false,
"contributors": [ "contributors": [
{ {
"name": "@spikying" "name": "@spikying"
@ -47,7 +51,6 @@
"name": "@zevanty" "name": "@zevanty"
} }
], ],
"deprecated": false,
"description": "Character detector", "description": "Character detector",
"devDependencies": { "devDependencies": {
"github-publish-release": "^5.0.0", "github-publish-release": "^5.0.0",

26
node_modules/cli-cursor/package.json

@ -1,27 +1,33 @@
{ {
"_from": "cli-cursor@^3.1.0", "_args": [
[
"cli-cursor@3.1.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "cli-cursor@3.1.0",
"_id": "cli-cursor@3.1.0", "_id": "cli-cursor@3.1.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "_integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
"_location": "/cli-cursor", "_location": "/cli-cursor",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "cli-cursor@^3.1.0", "raw": "cli-cursor@3.1.0",
"name": "cli-cursor", "name": "cli-cursor",
"escapedName": "cli-cursor", "escapedName": "cli-cursor",
"rawSpec": "^3.1.0", "rawSpec": "3.1.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^3.1.0" "fetchSpec": "3.1.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/inquirer" "/inquirer",
"/ora"
], ],
"_resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", "_resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
"_shasum": "264305a7ae490d1d03bf0c9ba7c925d1753af307", "_spec": "3.1.0",
"_spec": "cli-cursor@^3.1.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\inquirer",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -30,11 +36,9 @@
"bugs": { "bugs": {
"url": "https://github.com/sindresorhus/cli-cursor/issues" "url": "https://github.com/sindresorhus/cli-cursor/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"restore-cursor": "^3.1.0" "restore-cursor": "^3.1.0"
}, },
"deprecated": false,
"description": "Toggle the CLI cursor", "description": "Toggle the CLI cursor",
"devDependencies": { "devDependencies": {
"@types/node": "^12.0.7", "@types/node": "^12.0.7",

23
node_modules/cli-spinners/package.json

@ -1,27 +1,32 @@
{ {
"_from": "cli-spinners@^2.2.0", "_args": [
[
"cli-spinners@2.2.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "cli-spinners@2.2.0",
"_id": "cli-spinners@2.2.0", "_id": "cli-spinners@2.2.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-tgU3fKwzYjiLEQgPMD9Jt+JjHVL9kW93FiIMX/l7rivvOD4/LL0Mf7gda3+4U2KJBloybwgj5KEoQgGRioMiKQ==", "_integrity": "sha512-tgU3fKwzYjiLEQgPMD9Jt+JjHVL9kW93FiIMX/l7rivvOD4/LL0Mf7gda3+4U2KJBloybwgj5KEoQgGRioMiKQ==",
"_location": "/cli-spinners", "_location": "/cli-spinners",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "cli-spinners@^2.2.0", "raw": "cli-spinners@2.2.0",
"name": "cli-spinners", "name": "cli-spinners",
"escapedName": "cli-spinners", "escapedName": "cli-spinners",
"rawSpec": "^2.2.0", "rawSpec": "2.2.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^2.2.0" "fetchSpec": "2.2.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/ora" "/ora"
], ],
"_resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.2.0.tgz", "_resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.2.0.tgz",
"_shasum": "e8b988d9206c692302d8ee834e7a85c0144d8f77", "_spec": "2.2.0",
"_spec": "cli-spinners@^2.2.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\ora",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -30,8 +35,6 @@
"bugs": { "bugs": {
"url": "https://github.com/sindresorhus/cli-spinners/issues" "url": "https://github.com/sindresorhus/cli-spinners/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "Spinners for use in the terminal", "description": "Spinners for use in the terminal",
"devDependencies": { "devDependencies": {
"ava": "^1.4.1", "ava": "^1.4.1",

23
node_modules/cli-width/package.json

@ -1,27 +1,32 @@
{ {
"_from": "cli-width@^2.0.0", "_args": [
[
"cli-width@2.2.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "cli-width@2.2.0",
"_id": "cli-width@2.2.0", "_id": "cli-width@2.2.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=", "_integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=",
"_location": "/cli-width", "_location": "/cli-width",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "cli-width@^2.0.0", "raw": "cli-width@2.2.0",
"name": "cli-width", "name": "cli-width",
"escapedName": "cli-width", "escapedName": "cli-width",
"rawSpec": "^2.0.0", "rawSpec": "2.2.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^2.0.0" "fetchSpec": "2.2.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/inquirer" "/inquirer"
], ],
"_resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", "_resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz",
"_shasum": "ff19ede8a9a5e579324147b0c11f0fbcbabed639", "_spec": "2.2.0",
"_spec": "cli-width@^2.0.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\inquirer",
"author": { "author": {
"name": "Ilya Radchenko", "name": "Ilya Radchenko",
"email": "ilya@burstcreations.com" "email": "ilya@burstcreations.com"
@ -29,8 +34,6 @@
"bugs": { "bugs": {
"url": "https://github.com/knownasilya/cli-width/issues" "url": "https://github.com/knownasilya/cli-width/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "Get stdout window width, with two fallbacks, tty and then a default.", "description": "Get stdout window width, with two fallbacks, tty and then a default.",
"devDependencies": { "devDependencies": {
"coveralls": "^2.11.4", "coveralls": "^2.11.4",

23
node_modules/clone/package.json

@ -1,27 +1,32 @@
{ {
"_from": "clone@^1.0.2", "_args": [
[
"clone@1.0.4",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "clone@1.0.4",
"_id": "clone@1.0.4", "_id": "clone@1.0.4",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", "_integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=",
"_location": "/clone", "_location": "/clone",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "clone@^1.0.2", "raw": "clone@1.0.4",
"name": "clone", "name": "clone",
"escapedName": "clone", "escapedName": "clone",
"rawSpec": "^1.0.2", "rawSpec": "1.0.4",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^1.0.2" "fetchSpec": "1.0.4"
}, },
"_requiredBy": [ "_requiredBy": [
"/defaults" "/defaults"
], ],
"_resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", "_resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
"_shasum": "da309cc263df15994c688ca902179ca3c7cd7c7e", "_spec": "1.0.4",
"_spec": "clone@^1.0.2", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\defaults",
"author": { "author": {
"name": "Paul Vorbach", "name": "Paul Vorbach",
"email": "paul@vorba.ch", "email": "paul@vorba.ch",
@ -30,7 +35,6 @@
"bugs": { "bugs": {
"url": "https://github.com/pvorb/node-clone/issues" "url": "https://github.com/pvorb/node-clone/issues"
}, },
"bundleDependencies": false,
"contributors": [ "contributors": [
{ {
"name": "Blake Miner", "name": "Blake Miner",
@ -106,7 +110,6 @@
} }
], ],
"dependencies": {}, "dependencies": {},
"deprecated": false,
"description": "deep cloning of objects and arrays", "description": "deep cloning of objects and arrays",
"devDependencies": { "devDependencies": {
"nodeunit": "~0.9.0" "nodeunit": "~0.9.0"

23
node_modules/color-convert/package.json

@ -1,27 +1,32 @@
{ {
"_from": "color-convert@^1.9.0", "_args": [
[
"color-convert@1.9.3",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "color-convert@1.9.3",
"_id": "color-convert@1.9.3", "_id": "color-convert@1.9.3",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "_integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"_location": "/color-convert", "_location": "/color-convert",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "color-convert@^1.9.0", "raw": "color-convert@1.9.3",
"name": "color-convert", "name": "color-convert",
"escapedName": "color-convert", "escapedName": "color-convert",
"rawSpec": "^1.9.0", "rawSpec": "1.9.3",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^1.9.0" "fetchSpec": "1.9.3"
}, },
"_requiredBy": [ "_requiredBy": [
"/ansi-styles" "/ansi-styles"
], ],
"_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"_shasum": "bb71850690e1f136567de629d2d5471deda4c1e8", "_spec": "1.9.3",
"_spec": "color-convert@^1.9.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\ansi-styles",
"author": { "author": {
"name": "Heather Arthur", "name": "Heather Arthur",
"email": "fayearthur@gmail.com" "email": "fayearthur@gmail.com"
@ -29,11 +34,9 @@
"bugs": { "bugs": {
"url": "https://github.com/Qix-/color-convert/issues" "url": "https://github.com/Qix-/color-convert/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"color-name": "1.1.3" "color-name": "1.1.3"
}, },
"deprecated": false,
"description": "Plain color conversion functions", "description": "Plain color conversion functions",
"devDependencies": { "devDependencies": {
"chalk": "1.1.1", "chalk": "1.1.1",

13
node_modules/color-name/package.json

@ -1,4 +1,10 @@
{ {
"_args": [
[
"color-name@1.1.3",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "color-name@1.1.3", "_from": "color-name@1.1.3",
"_id": "color-name@1.1.3", "_id": "color-name@1.1.3",
"_inBundle": false, "_inBundle": false,
@ -19,9 +25,8 @@
"/color-convert" "/color-convert"
], ],
"_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"_shasum": "a7d0558bd89c42f795dd42328f740831ca53bc25", "_spec": "1.1.3",
"_spec": "color-name@1.1.3", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\color-convert",
"author": { "author": {
"name": "DY", "name": "DY",
"email": "dfcreative@gmail.com" "email": "dfcreative@gmail.com"
@ -29,8 +34,6 @@
"bugs": { "bugs": {
"url": "https://github.com/dfcreative/color-name/issues" "url": "https://github.com/dfcreative/color-name/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "A list of color names and its values", "description": "A list of color names and its values",
"homepage": "https://github.com/dfcreative/color-name", "homepage": "https://github.com/dfcreative/color-name",
"keywords": [ "keywords": [

22
node_modules/commander/package.json

@ -1,27 +1,31 @@
{ {
"_from": "commander", "_args": [
[
"commander@4.0.1",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "commander@4.0.1",
"_id": "commander@4.0.1", "_id": "commander@4.0.1",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-IPF4ouhCP+qdlcmCedhxX4xiGBPyigb8v5NeUp+0LyhwLgxMqyp3S0vl7TAPfS/hiP7FC3caI/PB9lTmP8r1NA==", "_integrity": "sha512-IPF4ouhCP+qdlcmCedhxX4xiGBPyigb8v5NeUp+0LyhwLgxMqyp3S0vl7TAPfS/hiP7FC3caI/PB9lTmP8r1NA==",
"_location": "/commander", "_location": "/commander",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "tag", "type": "version",
"registry": true, "registry": true,
"raw": "commander", "raw": "commander@4.0.1",
"name": "commander", "name": "commander",
"escapedName": "commander", "escapedName": "commander",
"rawSpec": "", "rawSpec": "4.0.1",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "latest" "fetchSpec": "4.0.1"
}, },
"_requiredBy": [ "_requiredBy": [
"#USER",
"/" "/"
], ],
"_resolved": "https://registry.npmjs.org/commander/-/commander-4.0.1.tgz", "_resolved": "https://registry.npmjs.org/commander/-/commander-4.0.1.tgz",
"_shasum": "b67622721785993182e807f4883633e6401ba53c", "_spec": "4.0.1",
"_spec": "commander",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"author": { "author": {
"name": "TJ Holowaychuk", "name": "TJ Holowaychuk",
@ -30,9 +34,7 @@
"bugs": { "bugs": {
"url": "https://github.com/tj/commander.js/issues" "url": "https://github.com/tj/commander.js/issues"
}, },
"bundleDependencies": false,
"dependencies": {}, "dependencies": {},
"deprecated": false,
"description": "the complete solution for node.js command-line programs", "description": "the complete solution for node.js command-line programs",
"devDependencies": { "devDependencies": {
"@types/jest": "^24.0.18", "@types/jest": "^24.0.18",

23
node_modules/defaults/package.json

@ -1,27 +1,32 @@
{ {
"_from": "defaults@^1.0.3", "_args": [
[
"defaults@1.0.3",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "defaults@1.0.3",
"_id": "defaults@1.0.3", "_id": "defaults@1.0.3",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", "_integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=",
"_location": "/defaults", "_location": "/defaults",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "defaults@^1.0.3", "raw": "defaults@1.0.3",
"name": "defaults", "name": "defaults",
"escapedName": "defaults", "escapedName": "defaults",
"rawSpec": "^1.0.3", "rawSpec": "1.0.3",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^1.0.3" "fetchSpec": "1.0.3"
}, },
"_requiredBy": [ "_requiredBy": [
"/wcwidth" "/wcwidth"
], ],
"_resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", "_resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz",
"_shasum": "c656051e9817d9ff08ed881477f3fe4019f3ef7d", "_spec": "1.0.3",
"_spec": "defaults@^1.0.3", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\wcwidth",
"author": { "author": {
"name": "Elijah Insua", "name": "Elijah Insua",
"email": "tmpvar@gmail.com" "email": "tmpvar@gmail.com"
@ -29,11 +34,9 @@
"bugs": { "bugs": {
"url": "https://github.com/tmpvar/defaults/issues" "url": "https://github.com/tmpvar/defaults/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"clone": "^1.0.2" "clone": "^1.0.2"
}, },
"deprecated": false,
"description": "merge single level defaults over a config object", "description": "merge single level defaults over a config object",
"devDependencies": { "devDependencies": {
"tap": "^2.0.0" "tap": "^2.0.0"

23
node_modules/emoji-regex/package.json

@ -1,27 +1,32 @@
{ {
"_from": "emoji-regex@^8.0.0", "_args": [
[
"emoji-regex@8.0.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "emoji-regex@8.0.0",
"_id": "emoji-regex@8.0.0", "_id": "emoji-regex@8.0.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "_integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
"_location": "/emoji-regex", "_location": "/emoji-regex",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "emoji-regex@^8.0.0", "raw": "emoji-regex@8.0.0",
"name": "emoji-regex", "name": "emoji-regex",
"escapedName": "emoji-regex", "escapedName": "emoji-regex",
"rawSpec": "^8.0.0", "rawSpec": "8.0.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^8.0.0" "fetchSpec": "8.0.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/string-width" "/string-width"
], ],
"_resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "_resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
"_shasum": "e818fd69ce5ccfcb404594f842963bf53164cc37", "_spec": "8.0.0",
"_spec": "emoji-regex@^8.0.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\string-width",
"author": { "author": {
"name": "Mathias Bynens", "name": "Mathias Bynens",
"url": "https://mathiasbynens.be/" "url": "https://mathiasbynens.be/"
@ -29,8 +34,6 @@
"bugs": { "bugs": {
"url": "https://github.com/mathiasbynens/emoji-regex/issues" "url": "https://github.com/mathiasbynens/emoji-regex/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "A regular expression to match all Emoji-only symbols as per the Unicode Standard.", "description": "A regular expression to match all Emoji-only symbols as per the Unicode Standard.",
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.2.3", "@babel/cli": "^7.2.3",

23
node_modules/escape-string-regexp/package.json

@ -1,28 +1,33 @@
{ {
"_from": "escape-string-regexp@^1.0.5", "_args": [
[
"escape-string-regexp@1.0.5",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "escape-string-regexp@1.0.5",
"_id": "escape-string-regexp@1.0.5", "_id": "escape-string-regexp@1.0.5",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "_integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
"_location": "/escape-string-regexp", "_location": "/escape-string-regexp",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "escape-string-regexp@^1.0.5", "raw": "escape-string-regexp@1.0.5",
"name": "escape-string-regexp", "name": "escape-string-regexp",
"escapedName": "escape-string-regexp", "escapedName": "escape-string-regexp",
"rawSpec": "^1.0.5", "rawSpec": "1.0.5",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^1.0.5" "fetchSpec": "1.0.5"
}, },
"_requiredBy": [ "_requiredBy": [
"/chalk", "/chalk",
"/figures" "/figures"
], ],
"_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"_shasum": "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4", "_spec": "1.0.5",
"_spec": "escape-string-regexp@^1.0.5", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\chalk",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -31,8 +36,6 @@
"bugs": { "bugs": {
"url": "https://github.com/sindresorhus/escape-string-regexp/issues" "url": "https://github.com/sindresorhus/escape-string-regexp/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "Escape RegExp special characters", "description": "Escape RegExp special characters",
"devDependencies": { "devDependencies": {
"ava": "*", "ava": "*",

23
node_modules/external-editor/package.json

@ -1,27 +1,32 @@
{ {
"_from": "external-editor@^3.0.3", "_args": [
[
"external-editor@3.1.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "external-editor@3.1.0",
"_id": "external-editor@3.1.0", "_id": "external-editor@3.1.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", "_integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==",
"_location": "/external-editor", "_location": "/external-editor",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "external-editor@^3.0.3", "raw": "external-editor@3.1.0",
"name": "external-editor", "name": "external-editor",
"escapedName": "external-editor", "escapedName": "external-editor",
"rawSpec": "^3.0.3", "rawSpec": "3.1.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^3.0.3" "fetchSpec": "3.1.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/inquirer" "/inquirer"
], ],
"_resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", "_resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz",
"_shasum": "cb03f740befae03ea4d283caed2741a83f335495", "_spec": "3.1.0",
"_spec": "external-editor@^3.0.3", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\inquirer",
"author": { "author": {
"name": "Kevin Gravier", "name": "Kevin Gravier",
"email": "kevin@mrkmg.com", "email": "kevin@mrkmg.com",
@ -30,7 +35,6 @@
"bugs": { "bugs": {
"url": "https://github.com/mrkmg/node-external-editor/issues" "url": "https://github.com/mrkmg/node-external-editor/issues"
}, },
"bundleDependencies": false,
"config": { "config": {
"ndt": { "ndt": {
"versions": [ "versions": [
@ -43,7 +47,6 @@
"iconv-lite": "^0.4.24", "iconv-lite": "^0.4.24",
"tmp": "^0.0.33" "tmp": "^0.0.33"
}, },
"deprecated": false,
"description": "Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT", "description": "Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT",
"devDependencies": { "devDependencies": {
"@types/chai": "^4.1.4", "@types/chai": "^4.1.4",

23
node_modules/figures/package.json

@ -1,27 +1,32 @@
{ {
"_from": "figures@^3.0.0", "_args": [
[
"figures@3.1.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "figures@3.1.0",
"_id": "figures@3.1.0", "_id": "figures@3.1.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-ravh8VRXqHuMvZt/d8GblBeqDMkdJMBdv/2KntFH+ra5MXkO7nxNKpzQ3n6QD/2da1kH0aWmNISdvhM7gl2gVg==", "_integrity": "sha512-ravh8VRXqHuMvZt/d8GblBeqDMkdJMBdv/2KntFH+ra5MXkO7nxNKpzQ3n6QD/2da1kH0aWmNISdvhM7gl2gVg==",
"_location": "/figures", "_location": "/figures",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "figures@^3.0.0", "raw": "figures@3.1.0",
"name": "figures", "name": "figures",
"escapedName": "figures", "escapedName": "figures",
"rawSpec": "^3.0.0", "rawSpec": "3.1.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^3.0.0" "fetchSpec": "3.1.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/inquirer" "/inquirer"
], ],
"_resolved": "https://registry.npmjs.org/figures/-/figures-3.1.0.tgz", "_resolved": "https://registry.npmjs.org/figures/-/figures-3.1.0.tgz",
"_shasum": "4b198dd07d8d71530642864af2d45dd9e459c4ec", "_spec": "3.1.0",
"_spec": "figures@^3.0.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\inquirer",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -30,11 +35,9 @@
"bugs": { "bugs": {
"url": "https://github.com/sindresorhus/figures/issues" "url": "https://github.com/sindresorhus/figures/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"escape-string-regexp": "^1.0.5" "escape-string-regexp": "^1.0.5"
}, },
"deprecated": false,
"description": "Unicode symbols with Windows CMD fallbacks", "description": "Unicode symbols with Windows CMD fallbacks",
"devDependencies": { "devDependencies": {
"ava": "^1.4.1", "ava": "^1.4.1",

23
node_modules/has-flag/package.json

@ -1,27 +1,32 @@
{ {
"_from": "has-flag@^3.0.0", "_args": [
[
"has-flag@3.0.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "has-flag@3.0.0",
"_id": "has-flag@3.0.0", "_id": "has-flag@3.0.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", "_integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
"_location": "/has-flag", "_location": "/has-flag",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "has-flag@^3.0.0", "raw": "has-flag@3.0.0",
"name": "has-flag", "name": "has-flag",
"escapedName": "has-flag", "escapedName": "has-flag",
"rawSpec": "^3.0.0", "rawSpec": "3.0.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^3.0.0" "fetchSpec": "3.0.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/supports-color" "/supports-color"
], ],
"_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"_shasum": "b5d454dc2199ae225699f3467e5a07f3b955bafd", "_spec": "3.0.0",
"_spec": "has-flag@^3.0.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\supports-color",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -30,8 +35,6 @@
"bugs": { "bugs": {
"url": "https://github.com/sindresorhus/has-flag/issues" "url": "https://github.com/sindresorhus/has-flag/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "Check if argv has a specific flag", "description": "Check if argv has a specific flag",
"devDependencies": { "devDependencies": {
"ava": "*", "ava": "*",

23
node_modules/iconv-lite/package.json

@ -1,27 +1,32 @@
{ {
"_from": "iconv-lite@^0.4.24", "_args": [
[
"iconv-lite@0.4.24",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "iconv-lite@0.4.24",
"_id": "iconv-lite@0.4.24", "_id": "iconv-lite@0.4.24",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "_integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
"_location": "/iconv-lite", "_location": "/iconv-lite",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "iconv-lite@^0.4.24", "raw": "iconv-lite@0.4.24",
"name": "iconv-lite", "name": "iconv-lite",
"escapedName": "iconv-lite", "escapedName": "iconv-lite",
"rawSpec": "^0.4.24", "rawSpec": "0.4.24",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^0.4.24" "fetchSpec": "0.4.24"
}, },
"_requiredBy": [ "_requiredBy": [
"/external-editor" "/external-editor"
], ],
"_resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "_resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
"_shasum": "2022b4b25fbddc21d2f524974a474aafe733908b", "_spec": "0.4.24",
"_spec": "iconv-lite@^0.4.24", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\external-editor",
"author": { "author": {
"name": "Alexander Shtuchkin", "name": "Alexander Shtuchkin",
"email": "ashtuchkin@gmail.com" "email": "ashtuchkin@gmail.com"
@ -33,11 +38,9 @@
"bugs": { "bugs": {
"url": "https://github.com/ashtuchkin/iconv-lite/issues" "url": "https://github.com/ashtuchkin/iconv-lite/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"safer-buffer": ">= 2.1.2 < 3" "safer-buffer": ">= 2.1.2 < 3"
}, },
"deprecated": false,
"description": "Convert character encodings in pure javascript.", "description": "Convert character encodings in pure javascript.",
"devDependencies": { "devDependencies": {
"async": "*", "async": "*",

22
node_modules/inquirer/package.json

@ -1,27 +1,31 @@
{ {
"_from": "inquirer", "_args": [
[
"inquirer@7.0.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "inquirer@7.0.0",
"_id": "inquirer@7.0.0", "_id": "inquirer@7.0.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-rSdC7zelHdRQFkWnhsMu2+2SO41mpv2oF2zy4tMhmiLWkcKbOAs87fWAJhVXttKVwhdZvymvnuM95EyEXg2/tQ==", "_integrity": "sha512-rSdC7zelHdRQFkWnhsMu2+2SO41mpv2oF2zy4tMhmiLWkcKbOAs87fWAJhVXttKVwhdZvymvnuM95EyEXg2/tQ==",
"_location": "/inquirer", "_location": "/inquirer",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "tag", "type": "version",
"registry": true, "registry": true,
"raw": "inquirer", "raw": "inquirer@7.0.0",
"name": "inquirer", "name": "inquirer",
"escapedName": "inquirer", "escapedName": "inquirer",
"rawSpec": "", "rawSpec": "7.0.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "latest" "fetchSpec": "7.0.0"
}, },
"_requiredBy": [ "_requiredBy": [
"#USER",
"/" "/"
], ],
"_resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.0.0.tgz", "_resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.0.0.tgz",
"_shasum": "9e2b032dde77da1db5db804758b8fea3a970519a", "_spec": "7.0.0",
"_spec": "inquirer",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"author": { "author": {
"name": "Simon Boudrias", "name": "Simon Boudrias",
@ -30,7 +34,6 @@
"bugs": { "bugs": {
"url": "https://github.com/SBoudrias/Inquirer.js/issues" "url": "https://github.com/SBoudrias/Inquirer.js/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"ansi-escapes": "^4.2.1", "ansi-escapes": "^4.2.1",
"chalk": "^2.4.2", "chalk": "^2.4.2",
@ -46,7 +49,6 @@
"strip-ansi": "^5.1.0", "strip-ansi": "^5.1.0",
"through": "^2.3.6" "through": "^2.3.6"
}, },
"deprecated": false,
"description": "A collection of common interactive command line user interfaces.", "description": "A collection of common interactive command line user interfaces.",
"devDependencies": { "devDependencies": {
"chai": "^4.2.0", "chai": "^4.2.0",

23
node_modules/is-fullwidth-code-point/package.json

@ -1,27 +1,32 @@
{ {
"_from": "is-fullwidth-code-point@^3.0.0", "_args": [
[
"is-fullwidth-code-point@3.0.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "is-fullwidth-code-point@3.0.0",
"_id": "is-fullwidth-code-point@3.0.0", "_id": "is-fullwidth-code-point@3.0.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "_integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
"_location": "/is-fullwidth-code-point", "_location": "/is-fullwidth-code-point",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "is-fullwidth-code-point@^3.0.0", "raw": "is-fullwidth-code-point@3.0.0",
"name": "is-fullwidth-code-point", "name": "is-fullwidth-code-point",
"escapedName": "is-fullwidth-code-point", "escapedName": "is-fullwidth-code-point",
"rawSpec": "^3.0.0", "rawSpec": "3.0.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^3.0.0" "fetchSpec": "3.0.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/string-width" "/string-width"
], ],
"_resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "_resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
"_shasum": "f116f8064fe90b3f7844a38997c0b75051269f1d", "_spec": "3.0.0",
"_spec": "is-fullwidth-code-point@^3.0.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\string-width",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -30,8 +35,6 @@
"bugs": { "bugs": {
"url": "https://github.com/sindresorhus/is-fullwidth-code-point/issues" "url": "https://github.com/sindresorhus/is-fullwidth-code-point/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "Check if the character represented by a given Unicode code point is fullwidth", "description": "Check if the character represented by a given Unicode code point is fullwidth",
"devDependencies": { "devDependencies": {
"ava": "^1.3.1", "ava": "^1.3.1",

23
node_modules/is-interactive/package.json

@ -1,27 +1,32 @@
{ {
"_from": "is-interactive@^1.0.0", "_args": [
[
"is-interactive@1.0.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "is-interactive@1.0.0",
"_id": "is-interactive@1.0.0", "_id": "is-interactive@1.0.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", "_integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==",
"_location": "/is-interactive", "_location": "/is-interactive",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "is-interactive@^1.0.0", "raw": "is-interactive@1.0.0",
"name": "is-interactive", "name": "is-interactive",
"escapedName": "is-interactive", "escapedName": "is-interactive",
"rawSpec": "^1.0.0", "rawSpec": "1.0.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^1.0.0" "fetchSpec": "1.0.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/ora" "/ora"
], ],
"_resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", "_resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz",
"_shasum": "cea6e6ae5c870a7b0a0004070b7b587e0252912e", "_spec": "1.0.0",
"_spec": "is-interactive@^1.0.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\ora",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -30,8 +35,6 @@
"bugs": { "bugs": {
"url": "https://github.com/sindresorhus/is-interactive/issues" "url": "https://github.com/sindresorhus/is-interactive/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "Check if stdout or stderr is interactive", "description": "Check if stdout or stderr is interactive",
"devDependencies": { "devDependencies": {
"@types/node": "^12.0.12", "@types/node": "^12.0.12",

23
node_modules/is-promise/package.json

@ -1,35 +1,38 @@
{ {
"_from": "is-promise@^2.1.0", "_args": [
[
"is-promise@2.1.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "is-promise@2.1.0",
"_id": "is-promise@2.1.0", "_id": "is-promise@2.1.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", "_integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=",
"_location": "/is-promise", "_location": "/is-promise",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "is-promise@^2.1.0", "raw": "is-promise@2.1.0",
"name": "is-promise", "name": "is-promise",
"escapedName": "is-promise", "escapedName": "is-promise",
"rawSpec": "^2.1.0", "rawSpec": "2.1.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^2.1.0" "fetchSpec": "2.1.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/run-async" "/run-async"
], ],
"_resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", "_resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz",
"_shasum": "79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa", "_spec": "2.1.0",
"_spec": "is-promise@^2.1.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\run-async",
"author": { "author": {
"name": "ForbesLindesay" "name": "ForbesLindesay"
}, },
"bugs": { "bugs": {
"url": "https://github.com/then/is-promise/issues" "url": "https://github.com/then/is-promise/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "Test whether an object looks like a promises-a+ promise", "description": "Test whether an object looks like a promises-a+ promise",
"devDependencies": { "devDependencies": {
"better-assert": "~0.1.0", "better-assert": "~0.1.0",

23
node_modules/lodash/package.json

@ -1,27 +1,32 @@
{ {
"_from": "lodash@^4.17.15", "_args": [
[
"lodash@4.17.15",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "lodash@4.17.15",
"_id": "lodash@4.17.15", "_id": "lodash@4.17.15",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==", "_integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==",
"_location": "/lodash", "_location": "/lodash",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "lodash@^4.17.15", "raw": "lodash@4.17.15",
"name": "lodash", "name": "lodash",
"escapedName": "lodash", "escapedName": "lodash",
"rawSpec": "^4.17.15", "rawSpec": "4.17.15",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^4.17.15" "fetchSpec": "4.17.15"
}, },
"_requiredBy": [ "_requiredBy": [
"/inquirer" "/inquirer"
], ],
"_resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", "_resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz",
"_shasum": "b447f6670a0455bbfeedd11392eff330ea097548", "_spec": "4.17.15",
"_spec": "lodash@^4.17.15", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\inquirer",
"author": { "author": {
"name": "John-David Dalton", "name": "John-David Dalton",
"email": "john.david.dalton@gmail.com" "email": "john.david.dalton@gmail.com"
@ -29,7 +34,6 @@
"bugs": { "bugs": {
"url": "https://github.com/lodash/lodash/issues" "url": "https://github.com/lodash/lodash/issues"
}, },
"bundleDependencies": false,
"contributors": [ "contributors": [
{ {
"name": "John-David Dalton", "name": "John-David Dalton",
@ -40,7 +44,6 @@
"email": "mathias@qiwi.be" "email": "mathias@qiwi.be"
} }
], ],
"deprecated": false,
"description": "Lodash modular utilities.", "description": "Lodash modular utilities.",
"homepage": "https://lodash.com/", "homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg", "icon": "https://lodash.com/icon.svg",

23
node_modules/log-symbols/package.json

@ -1,27 +1,32 @@
{ {
"_from": "log-symbols@^3.0.0", "_args": [
[
"log-symbols@3.0.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "log-symbols@3.0.0",
"_id": "log-symbols@3.0.0", "_id": "log-symbols@3.0.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==", "_integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==",
"_location": "/log-symbols", "_location": "/log-symbols",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "log-symbols@^3.0.0", "raw": "log-symbols@3.0.0",
"name": "log-symbols", "name": "log-symbols",
"escapedName": "log-symbols", "escapedName": "log-symbols",
"rawSpec": "^3.0.0", "rawSpec": "3.0.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^3.0.0" "fetchSpec": "3.0.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/ora" "/ora"
], ],
"_resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz", "_resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz",
"_shasum": "f3a08516a5dea893336a7dee14d18a1cfdab77c4", "_spec": "3.0.0",
"_spec": "log-symbols@^3.0.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\ora",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -31,11 +36,9 @@
"bugs": { "bugs": {
"url": "https://github.com/sindresorhus/log-symbols/issues" "url": "https://github.com/sindresorhus/log-symbols/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"chalk": "^2.4.2" "chalk": "^2.4.2"
}, },
"deprecated": false,
"description": "Colored symbols for various log levels. Example: `✔︎ Success`", "description": "Colored symbols for various log levels. Example: `✔︎ Success`",
"devDependencies": { "devDependencies": {
"ava": "^1.4.1", "ava": "^1.4.1",

23
node_modules/mimic-fn/package.json

@ -1,27 +1,32 @@
{ {
"_from": "mimic-fn@^2.1.0", "_args": [
[
"mimic-fn@2.1.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "mimic-fn@2.1.0",
"_id": "mimic-fn@2.1.0", "_id": "mimic-fn@2.1.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "_integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
"_location": "/mimic-fn", "_location": "/mimic-fn",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "mimic-fn@^2.1.0", "raw": "mimic-fn@2.1.0",
"name": "mimic-fn", "name": "mimic-fn",
"escapedName": "mimic-fn", "escapedName": "mimic-fn",
"rawSpec": "^2.1.0", "rawSpec": "2.1.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^2.1.0" "fetchSpec": "2.1.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/onetime" "/onetime"
], ],
"_resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "_resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
"_shasum": "7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b", "_spec": "2.1.0",
"_spec": "mimic-fn@^2.1.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\onetime",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -30,8 +35,6 @@
"bugs": { "bugs": {
"url": "https://github.com/sindresorhus/mimic-fn/issues" "url": "https://github.com/sindresorhus/mimic-fn/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "Make a function mimic another one", "description": "Make a function mimic another one",
"devDependencies": { "devDependencies": {
"ava": "^1.4.1", "ava": "^1.4.1",

13
node_modules/mute-stream/package.json

@ -1,4 +1,10 @@
{ {
"_args": [
[
"mute-stream@0.0.8",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "mute-stream@0.0.8", "_from": "mute-stream@0.0.8",
"_id": "mute-stream@0.0.8", "_id": "mute-stream@0.0.8",
"_inBundle": false, "_inBundle": false,
@ -19,9 +25,8 @@
"/inquirer" "/inquirer"
], ],
"_resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", "_resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz",
"_shasum": "1630c42b2251ff81e2a283de96a5497ea92e5e0d", "_spec": "0.0.8",
"_spec": "mute-stream@0.0.8", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\inquirer",
"author": { "author": {
"name": "Isaac Z. Schlueter", "name": "Isaac Z. Schlueter",
"email": "i@izs.me", "email": "i@izs.me",
@ -30,8 +35,6 @@
"bugs": { "bugs": {
"url": "https://github.com/isaacs/mute-stream/issues" "url": "https://github.com/isaacs/mute-stream/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "Bytes go in, but they don't come out (when muted).", "description": "Bytes go in, but they don't come out (when muted).",
"devDependencies": { "devDependencies": {
"tap": "^12.1.1" "tap": "^12.1.1"

23
node_modules/onetime/package.json

@ -1,27 +1,32 @@
{ {
"_from": "onetime@^5.1.0", "_args": [
[
"onetime@5.1.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "onetime@5.1.0",
"_id": "onetime@5.1.0", "_id": "onetime@5.1.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==", "_integrity": "sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==",
"_location": "/onetime", "_location": "/onetime",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "onetime@^5.1.0", "raw": "onetime@5.1.0",
"name": "onetime", "name": "onetime",
"escapedName": "onetime", "escapedName": "onetime",
"rawSpec": "^5.1.0", "rawSpec": "5.1.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^5.1.0" "fetchSpec": "5.1.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/restore-cursor" "/restore-cursor"
], ],
"_resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.0.tgz", "_resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.0.tgz",
"_shasum": "fff0f3c91617fe62bb50189636e99ac8a6df7be5", "_spec": "5.1.0",
"_spec": "onetime@^5.1.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\restore-cursor",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -30,11 +35,9 @@
"bugs": { "bugs": {
"url": "https://github.com/sindresorhus/onetime/issues" "url": "https://github.com/sindresorhus/onetime/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"mimic-fn": "^2.1.0" "mimic-fn": "^2.1.0"
}, },
"deprecated": false,
"description": "Ensure a function is only called once", "description": "Ensure a function is only called once",
"devDependencies": { "devDependencies": {
"ava": "^1.4.1", "ava": "^1.4.1",

22
node_modules/ora/package.json

@ -1,27 +1,31 @@
{ {
"_from": "ora", "_args": [
[
"ora@4.0.2",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "ora@4.0.2",
"_id": "ora@4.0.2", "_id": "ora@4.0.2",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-YUOZbamht5mfLxPmk4M35CD/5DuOkAacxlEUbStVXpBAt4fyhBf+vZHI/HRkI++QUp3sNoeA2Gw4C+hi4eGSig==", "_integrity": "sha512-YUOZbamht5mfLxPmk4M35CD/5DuOkAacxlEUbStVXpBAt4fyhBf+vZHI/HRkI++QUp3sNoeA2Gw4C+hi4eGSig==",
"_location": "/ora", "_location": "/ora",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "tag", "type": "version",
"registry": true, "registry": true,
"raw": "ora", "raw": "ora@4.0.2",
"name": "ora", "name": "ora",
"escapedName": "ora", "escapedName": "ora",
"rawSpec": "", "rawSpec": "4.0.2",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "latest" "fetchSpec": "4.0.2"
}, },
"_requiredBy": [ "_requiredBy": [
"#USER",
"/" "/"
], ],
"_resolved": "https://registry.npmjs.org/ora/-/ora-4.0.2.tgz", "_resolved": "https://registry.npmjs.org/ora/-/ora-4.0.2.tgz",
"_shasum": "0e1e68fd45b135d28648b27cf08081fa6e8a297d", "_spec": "4.0.2",
"_spec": "ora",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
@ -31,7 +35,6 @@
"bugs": { "bugs": {
"url": "https://github.com/sindresorhus/ora/issues" "url": "https://github.com/sindresorhus/ora/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"chalk": "^2.4.2", "chalk": "^2.4.2",
"cli-cursor": "^3.1.0", "cli-cursor": "^3.1.0",
@ -41,7 +44,6 @@
"strip-ansi": "^5.2.0", "strip-ansi": "^5.2.0",
"wcwidth": "^1.0.1" "wcwidth": "^1.0.1"
}, },
"deprecated": false,
"description": "Elegant terminal spinner", "description": "Elegant terminal spinner",
"devDependencies": { "devDependencies": {
"@types/node": "^12.7.5", "@types/node": "^12.7.5",

23
node_modules/os-tmpdir/package.json

@ -1,27 +1,32 @@
{ {
"_from": "os-tmpdir@~1.0.2", "_args": [
[
"os-tmpdir@1.0.2",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "os-tmpdir@1.0.2",
"_id": "os-tmpdir@1.0.2", "_id": "os-tmpdir@1.0.2",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", "_integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=",
"_location": "/os-tmpdir", "_location": "/os-tmpdir",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "os-tmpdir@~1.0.2", "raw": "os-tmpdir@1.0.2",
"name": "os-tmpdir", "name": "os-tmpdir",
"escapedName": "os-tmpdir", "escapedName": "os-tmpdir",
"rawSpec": "~1.0.2", "rawSpec": "1.0.2",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "~1.0.2" "fetchSpec": "1.0.2"
}, },
"_requiredBy": [ "_requiredBy": [
"/tmp" "/tmp"
], ],
"_resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", "_resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
"_shasum": "bbe67406c79aa85c5cfec766fe5734555dfa1274", "_spec": "1.0.2",
"_spec": "os-tmpdir@~1.0.2", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\tmp",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -30,8 +35,6 @@
"bugs": { "bugs": {
"url": "https://github.com/sindresorhus/os-tmpdir/issues" "url": "https://github.com/sindresorhus/os-tmpdir/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "Node.js os.tmpdir() ponyfill", "description": "Node.js os.tmpdir() ponyfill",
"devDependencies": { "devDependencies": {
"ava": "*", "ava": "*",

23
node_modules/restore-cursor/package.json

@ -1,27 +1,32 @@
{ {
"_from": "restore-cursor@^3.1.0", "_args": [
[
"restore-cursor@3.1.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "restore-cursor@3.1.0",
"_id": "restore-cursor@3.1.0", "_id": "restore-cursor@3.1.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "_integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==",
"_location": "/restore-cursor", "_location": "/restore-cursor",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "restore-cursor@^3.1.0", "raw": "restore-cursor@3.1.0",
"name": "restore-cursor", "name": "restore-cursor",
"escapedName": "restore-cursor", "escapedName": "restore-cursor",
"rawSpec": "^3.1.0", "rawSpec": "3.1.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^3.1.0" "fetchSpec": "3.1.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/cli-cursor" "/cli-cursor"
], ],
"_resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", "_resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz",
"_shasum": "39f67c54b3a7a58cea5236d95cf0034239631f7e", "_spec": "3.1.0",
"_spec": "restore-cursor@^3.1.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\cli-cursor",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -30,12 +35,10 @@
"bugs": { "bugs": {
"url": "https://github.com/sindresorhus/restore-cursor/issues" "url": "https://github.com/sindresorhus/restore-cursor/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"onetime": "^5.1.0", "onetime": "^5.1.0",
"signal-exit": "^3.0.2" "signal-exit": "^3.0.2"
}, },
"deprecated": false,
"description": "Gracefully restore the CLI cursor on exit", "description": "Gracefully restore the CLI cursor on exit",
"devDependencies": { "devDependencies": {
"tsd": "^0.7.2", "tsd": "^0.7.2",

23
node_modules/run-async/package.json

@ -1,27 +1,32 @@
{ {
"_from": "run-async@^2.2.0", "_args": [
[
"run-async@2.3.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "run-async@2.3.0",
"_id": "run-async@2.3.0", "_id": "run-async@2.3.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", "_integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=",
"_location": "/run-async", "_location": "/run-async",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "run-async@^2.2.0", "raw": "run-async@2.3.0",
"name": "run-async", "name": "run-async",
"escapedName": "run-async", "escapedName": "run-async",
"rawSpec": "^2.2.0", "rawSpec": "2.3.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^2.2.0" "fetchSpec": "2.3.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/inquirer" "/inquirer"
], ],
"_resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", "_resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz",
"_shasum": "0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0", "_spec": "2.3.0",
"_spec": "run-async@^2.2.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\inquirer",
"author": { "author": {
"name": "Simon Boudrias", "name": "Simon Boudrias",
"email": "admin@simonboudrias.com" "email": "admin@simonboudrias.com"
@ -29,11 +34,9 @@
"bugs": { "bugs": {
"url": "https://github.com/SBoudrias/run-async/issues" "url": "https://github.com/SBoudrias/run-async/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"is-promise": "^2.1.0" "is-promise": "^2.1.0"
}, },
"deprecated": false,
"description": "Utility method to run function either synchronously or asynchronously using the common `this.async()` style.", "description": "Utility method to run function either synchronously or asynchronously using the common `this.async()` style.",
"devDependencies": { "devDependencies": {
"mocha": "^3.1.2" "mocha": "^3.1.2"

23
node_modules/rxjs/package.json

@ -1,27 +1,32 @@
{ {
"_from": "rxjs@^6.4.0", "_args": [
[
"rxjs@6.5.3",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "rxjs@6.5.3",
"_id": "rxjs@6.5.3", "_id": "rxjs@6.5.3",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-wuYsAYYFdWTAnAaPoKGNhfpWwKZbJW+HgAJ+mImp+Epl7BG8oNWBCTyRM8gba9k4lk8BgWdoYm21Mo/RYhhbgA==", "_integrity": "sha512-wuYsAYYFdWTAnAaPoKGNhfpWwKZbJW+HgAJ+mImp+Epl7BG8oNWBCTyRM8gba9k4lk8BgWdoYm21Mo/RYhhbgA==",
"_location": "/rxjs", "_location": "/rxjs",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "rxjs@^6.4.0", "raw": "rxjs@6.5.3",
"name": "rxjs", "name": "rxjs",
"escapedName": "rxjs", "escapedName": "rxjs",
"rawSpec": "^6.4.0", "rawSpec": "6.5.3",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^6.4.0" "fetchSpec": "6.5.3"
}, },
"_requiredBy": [ "_requiredBy": [
"/inquirer" "/inquirer"
], ],
"_resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.5.3.tgz", "_resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.5.3.tgz",
"_shasum": "510e26317f4db91a7eb1de77d9dd9ba0a4899a3a", "_spec": "6.5.3",
"_spec": "rxjs@^6.4.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\inquirer",
"author": { "author": {
"name": "Ben Lesh", "name": "Ben Lesh",
"email": "ben@benlesh.com" "email": "ben@benlesh.com"
@ -29,7 +34,6 @@
"bugs": { "bugs": {
"url": "https://github.com/ReactiveX/RxJS/issues" "url": "https://github.com/ReactiveX/RxJS/issues"
}, },
"bundleDependencies": false,
"config": { "config": {
"commitizen": { "commitizen": {
"path": "cz-conventional-changelog" "path": "cz-conventional-changelog"
@ -64,7 +68,6 @@
"dependencies": { "dependencies": {
"tslib": "^1.9.0" "tslib": "^1.9.0"
}, },
"deprecated": false,
"description": "Reactive Extensions for modern JavaScript", "description": "Reactive Extensions for modern JavaScript",
"devDependencies": { "devDependencies": {
"@angular-devkit/build-optimizer": "0.4.6", "@angular-devkit/build-optimizer": "0.4.6",

23
node_modules/safer-buffer/package.json

@ -1,27 +1,32 @@
{ {
"_from": "safer-buffer@>= 2.1.2 < 3", "_args": [
[
"safer-buffer@2.1.2",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "safer-buffer@2.1.2",
"_id": "safer-buffer@2.1.2", "_id": "safer-buffer@2.1.2",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "_integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
"_location": "/safer-buffer", "_location": "/safer-buffer",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "safer-buffer@>= 2.1.2 < 3", "raw": "safer-buffer@2.1.2",
"name": "safer-buffer", "name": "safer-buffer",
"escapedName": "safer-buffer", "escapedName": "safer-buffer",
"rawSpec": ">= 2.1.2 < 3", "rawSpec": "2.1.2",
"saveSpec": null, "saveSpec": null,
"fetchSpec": ">= 2.1.2 < 3" "fetchSpec": "2.1.2"
}, },
"_requiredBy": [ "_requiredBy": [
"/iconv-lite" "/iconv-lite"
], ],
"_resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "_resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
"_shasum": "44fa161b0187b9549dd84bb91802f9bd8385cd6a", "_spec": "2.1.2",
"_spec": "safer-buffer@>= 2.1.2 < 3", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\iconv-lite",
"author": { "author": {
"name": "Nikita Skovoroda", "name": "Nikita Skovoroda",
"email": "chalkerx@gmail.com", "email": "chalkerx@gmail.com",
@ -30,8 +35,6 @@
"bugs": { "bugs": {
"url": "https://github.com/ChALkeR/safer-buffer/issues" "url": "https://github.com/ChALkeR/safer-buffer/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "Modern Buffer API polyfill without footguns", "description": "Modern Buffer API polyfill without footguns",
"devDependencies": { "devDependencies": {
"standard": "^11.0.1", "standard": "^11.0.1",

23
node_modules/signal-exit/package.json

@ -1,27 +1,32 @@
{ {
"_from": "signal-exit@^3.0.2", "_args": [
[
"signal-exit@3.0.2",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "signal-exit@3.0.2",
"_id": "signal-exit@3.0.2", "_id": "signal-exit@3.0.2",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", "_integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=",
"_location": "/signal-exit", "_location": "/signal-exit",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "signal-exit@^3.0.2", "raw": "signal-exit@3.0.2",
"name": "signal-exit", "name": "signal-exit",
"escapedName": "signal-exit", "escapedName": "signal-exit",
"rawSpec": "^3.0.2", "rawSpec": "3.0.2",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^3.0.2" "fetchSpec": "3.0.2"
}, },
"_requiredBy": [ "_requiredBy": [
"/restore-cursor" "/restore-cursor"
], ],
"_resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", "_resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz",
"_shasum": "b5fdc08f1287ea1178628e415e25132b73646c6d", "_spec": "3.0.2",
"_spec": "signal-exit@^3.0.2", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\restore-cursor",
"author": { "author": {
"name": "Ben Coe", "name": "Ben Coe",
"email": "ben@npmjs.com" "email": "ben@npmjs.com"
@ -29,8 +34,6 @@
"bugs": { "bugs": {
"url": "https://github.com/tapjs/signal-exit/issues" "url": "https://github.com/tapjs/signal-exit/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "when you want to fire an event no matter how a process exits.", "description": "when you want to fire an event no matter how a process exits.",
"devDependencies": { "devDependencies": {
"chai": "^3.5.0", "chai": "^3.5.0",

23
node_modules/string-width/node_modules/strip-ansi/package.json

@ -1,27 +1,32 @@
{ {
"_from": "strip-ansi@^6.0.0", "_args": [
[
"strip-ansi@6.0.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "strip-ansi@6.0.0",
"_id": "strip-ansi@6.0.0", "_id": "strip-ansi@6.0.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", "_integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
"_location": "/string-width/strip-ansi", "_location": "/string-width/strip-ansi",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "strip-ansi@^6.0.0", "raw": "strip-ansi@6.0.0",
"name": "strip-ansi", "name": "strip-ansi",
"escapedName": "strip-ansi", "escapedName": "strip-ansi",
"rawSpec": "^6.0.0", "rawSpec": "6.0.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^6.0.0" "fetchSpec": "6.0.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/string-width" "/string-width"
], ],
"_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
"_shasum": "0b1571dd7669ccd4f3e06e14ef1eed26225ae532", "_spec": "6.0.0",
"_spec": "strip-ansi@^6.0.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\string-width",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -30,11 +35,9 @@
"bugs": { "bugs": {
"url": "https://github.com/chalk/strip-ansi/issues" "url": "https://github.com/chalk/strip-ansi/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"ansi-regex": "^5.0.0" "ansi-regex": "^5.0.0"
}, },
"deprecated": false,
"description": "Strip ANSI escape codes from a string", "description": "Strip ANSI escape codes from a string",
"devDependencies": { "devDependencies": {
"ava": "^2.4.0", "ava": "^2.4.0",

23
node_modules/string-width/package.json

@ -1,5 +1,11 @@
{ {
"_from": "string-width@^4.1.0", "_args": [
[
"string-width@4.2.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "string-width@4.2.0",
"_id": "string-width@4.2.0", "_id": "string-width@4.2.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", "_integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
@ -8,22 +14,21 @@
"ansi-regex": "5.0.0" "ansi-regex": "5.0.0"
}, },
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "string-width@^4.1.0", "raw": "string-width@4.2.0",
"name": "string-width", "name": "string-width",
"escapedName": "string-width", "escapedName": "string-width",
"rawSpec": "^4.1.0", "rawSpec": "4.2.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^4.1.0" "fetchSpec": "4.2.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/inquirer" "/inquirer"
], ],
"_resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", "_resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
"_shasum": "952182c46cc7b2c313d1596e623992bd163b72b5", "_spec": "4.2.0",
"_spec": "string-width@^4.1.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\inquirer",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -32,13 +37,11 @@
"bugs": { "bugs": {
"url": "https://github.com/sindresorhus/string-width/issues" "url": "https://github.com/sindresorhus/string-width/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"emoji-regex": "^8.0.0", "emoji-regex": "^8.0.0",
"is-fullwidth-code-point": "^3.0.0", "is-fullwidth-code-point": "^3.0.0",
"strip-ansi": "^6.0.0" "strip-ansi": "^6.0.0"
}, },
"deprecated": false,
"description": "Get the visual width of a string - the number of columns required to display it", "description": "Get the visual width of a string - the number of columns required to display it",
"devDependencies": { "devDependencies": {
"ava": "^1.4.1", "ava": "^1.4.1",

23
node_modules/strip-ansi/node_modules/ansi-regex/package.json

@ -1,27 +1,32 @@
{ {
"_from": "ansi-regex@^4.1.0", "_args": [
[
"ansi-regex@4.1.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "ansi-regex@4.1.0",
"_id": "ansi-regex@4.1.0", "_id": "ansi-regex@4.1.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "_integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
"_location": "/strip-ansi/ansi-regex", "_location": "/strip-ansi/ansi-regex",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "ansi-regex@^4.1.0", "raw": "ansi-regex@4.1.0",
"name": "ansi-regex", "name": "ansi-regex",
"escapedName": "ansi-regex", "escapedName": "ansi-regex",
"rawSpec": "^4.1.0", "rawSpec": "4.1.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^4.1.0" "fetchSpec": "4.1.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/strip-ansi" "/strip-ansi"
], ],
"_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", "_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
"_shasum": "8b9f8f08cf1acb843756a839ca8c7e3168c51997", "_spec": "4.1.0",
"_spec": "ansi-regex@^4.1.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\strip-ansi",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -30,8 +35,6 @@
"bugs": { "bugs": {
"url": "https://github.com/chalk/ansi-regex/issues" "url": "https://github.com/chalk/ansi-regex/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "Regular expression for matching ANSI escape codes", "description": "Regular expression for matching ANSI escape codes",
"devDependencies": { "devDependencies": {
"ava": "^0.25.0", "ava": "^0.25.0",

26
node_modules/strip-ansi/package.json

@ -1,27 +1,33 @@
{ {
"_from": "strip-ansi@^5.1.0", "_args": [
[
"strip-ansi@5.2.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "strip-ansi@5.2.0",
"_id": "strip-ansi@5.2.0", "_id": "strip-ansi@5.2.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "_integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
"_location": "/strip-ansi", "_location": "/strip-ansi",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "strip-ansi@^5.1.0", "raw": "strip-ansi@5.2.0",
"name": "strip-ansi", "name": "strip-ansi",
"escapedName": "strip-ansi", "escapedName": "strip-ansi",
"rawSpec": "^5.1.0", "rawSpec": "5.2.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^5.1.0" "fetchSpec": "5.2.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/inquirer" "/inquirer",
"/ora"
], ],
"_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
"_shasum": "8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae", "_spec": "5.2.0",
"_spec": "strip-ansi@^5.1.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\inquirer",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -30,11 +36,9 @@
"bugs": { "bugs": {
"url": "https://github.com/chalk/strip-ansi/issues" "url": "https://github.com/chalk/strip-ansi/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"ansi-regex": "^4.1.0" "ansi-regex": "^4.1.0"
}, },
"deprecated": false,
"description": "Strip ANSI escape codes from a string", "description": "Strip ANSI escape codes from a string",
"devDependencies": { "devDependencies": {
"ava": "^1.3.1", "ava": "^1.3.1",

23
node_modules/supports-color/package.json

@ -1,27 +1,32 @@
{ {
"_from": "supports-color@^5.3.0", "_args": [
[
"supports-color@5.5.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "supports-color@5.5.0",
"_id": "supports-color@5.5.0", "_id": "supports-color@5.5.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "_integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"_location": "/supports-color", "_location": "/supports-color",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "supports-color@^5.3.0", "raw": "supports-color@5.5.0",
"name": "supports-color", "name": "supports-color",
"escapedName": "supports-color", "escapedName": "supports-color",
"rawSpec": "^5.3.0", "rawSpec": "5.5.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^5.3.0" "fetchSpec": "5.5.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/chalk" "/chalk"
], ],
"_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"_shasum": "e2e69a44ac8772f78a1ec0b35b689df6530efc8f", "_spec": "5.5.0",
"_spec": "supports-color@^5.3.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\chalk",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -31,11 +36,9 @@
"bugs": { "bugs": {
"url": "https://github.com/chalk/supports-color/issues" "url": "https://github.com/chalk/supports-color/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"has-flag": "^3.0.0" "has-flag": "^3.0.0"
}, },
"deprecated": false,
"description": "Detect whether a terminal supports color", "description": "Detect whether a terminal supports color",
"devDependencies": { "devDependencies": {
"ava": "^0.25.0", "ava": "^0.25.0",

23
node_modules/through/package.json

@ -1,27 +1,32 @@
{ {
"_from": "through@^2.3.6", "_args": [
[
"through@2.3.8",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "through@2.3.8",
"_id": "through@2.3.8", "_id": "through@2.3.8",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", "_integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=",
"_location": "/through", "_location": "/through",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "through@^2.3.6", "raw": "through@2.3.8",
"name": "through", "name": "through",
"escapedName": "through", "escapedName": "through",
"rawSpec": "^2.3.6", "rawSpec": "2.3.8",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^2.3.6" "fetchSpec": "2.3.8"
}, },
"_requiredBy": [ "_requiredBy": [
"/inquirer" "/inquirer"
], ],
"_resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", "_resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
"_shasum": "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5", "_spec": "2.3.8",
"_spec": "through@^2.3.6", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\inquirer",
"author": { "author": {
"name": "Dominic Tarr", "name": "Dominic Tarr",
"email": "dominic.tarr@gmail.com", "email": "dominic.tarr@gmail.com",
@ -30,8 +35,6 @@
"bugs": { "bugs": {
"url": "https://github.com/dominictarr/through/issues" "url": "https://github.com/dominictarr/through/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "simplified stream construction", "description": "simplified stream construction",
"devDependencies": { "devDependencies": {
"from": "~0.1.3", "from": "~0.1.3",

23
node_modules/tmp/package.json

@ -1,27 +1,32 @@
{ {
"_from": "tmp@^0.0.33", "_args": [
[
"tmp@0.0.33",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "tmp@0.0.33",
"_id": "tmp@0.0.33", "_id": "tmp@0.0.33",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", "_integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
"_location": "/tmp", "_location": "/tmp",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "tmp@^0.0.33", "raw": "tmp@0.0.33",
"name": "tmp", "name": "tmp",
"escapedName": "tmp", "escapedName": "tmp",
"rawSpec": "^0.0.33", "rawSpec": "0.0.33",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^0.0.33" "fetchSpec": "0.0.33"
}, },
"_requiredBy": [ "_requiredBy": [
"/external-editor" "/external-editor"
], ],
"_resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", "_resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
"_shasum": "6d34335889768d21b2bcda0aa277ced3b1bfadf9", "_spec": "0.0.33",
"_spec": "tmp@^0.0.33", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\external-editor",
"author": { "author": {
"name": "KARASZI István", "name": "KARASZI István",
"email": "github@spam.raszi.hu", "email": "github@spam.raszi.hu",
@ -30,11 +35,9 @@
"bugs": { "bugs": {
"url": "http://github.com/raszi/node-tmp/issues" "url": "http://github.com/raszi/node-tmp/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"os-tmpdir": "~1.0.2" "os-tmpdir": "~1.0.2"
}, },
"deprecated": false,
"description": "Temporary file and directory creator", "description": "Temporary file and directory creator",
"devDependencies": { "devDependencies": {
"vows": "~0.7.0" "vows": "~0.7.0"

23
node_modules/tslib/package.json

@ -1,35 +1,38 @@
{ {
"_from": "tslib@^1.9.0", "_args": [
[
"tslib@1.10.0",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "tslib@1.10.0",
"_id": "tslib@1.10.0", "_id": "tslib@1.10.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==", "_integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==",
"_location": "/tslib", "_location": "/tslib",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "tslib@^1.9.0", "raw": "tslib@1.10.0",
"name": "tslib", "name": "tslib",
"escapedName": "tslib", "escapedName": "tslib",
"rawSpec": "^1.9.0", "rawSpec": "1.10.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^1.9.0" "fetchSpec": "1.10.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/rxjs" "/rxjs"
], ],
"_resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", "_resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz",
"_shasum": "c3c19f95973fb0a62973fb09d90d961ee43e5c8a", "_spec": "1.10.0",
"_spec": "tslib@^1.9.0", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\rxjs",
"author": { "author": {
"name": "Microsoft Corp." "name": "Microsoft Corp."
}, },
"bugs": { "bugs": {
"url": "https://github.com/Microsoft/TypeScript/issues" "url": "https://github.com/Microsoft/TypeScript/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "Runtime library for TypeScript helper functions", "description": "Runtime library for TypeScript helper functions",
"homepage": "http://typescriptlang.org/", "homepage": "http://typescriptlang.org/",
"jsnext:main": "tslib.es6.js", "jsnext:main": "tslib.es6.js",

23
node_modules/type-fest/package.json

@ -1,27 +1,32 @@
{ {
"_from": "type-fest@^0.5.2", "_args": [
[
"type-fest@0.5.2",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "type-fest@0.5.2",
"_id": "type-fest@0.5.2", "_id": "type-fest@0.5.2",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-DWkS49EQKVX//Tbupb9TFa19c7+MK1XmzkrZUR8TAktmE/DizXoaoJV6TZ/tSIPXipqNiRI6CyAe7x69Jb6RSw==", "_integrity": "sha512-DWkS49EQKVX//Tbupb9TFa19c7+MK1XmzkrZUR8TAktmE/DizXoaoJV6TZ/tSIPXipqNiRI6CyAe7x69Jb6RSw==",
"_location": "/type-fest", "_location": "/type-fest",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "type-fest@^0.5.2", "raw": "type-fest@0.5.2",
"name": "type-fest", "name": "type-fest",
"escapedName": "type-fest", "escapedName": "type-fest",
"rawSpec": "^0.5.2", "rawSpec": "0.5.2",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^0.5.2" "fetchSpec": "0.5.2"
}, },
"_requiredBy": [ "_requiredBy": [
"/ansi-escapes" "/ansi-escapes"
], ],
"_resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.5.2.tgz", "_resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.5.2.tgz",
"_shasum": "d6ef42a0356c6cd45f49485c3b6281fc148e48a2", "_spec": "0.5.2",
"_spec": "type-fest@^0.5.2", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\ansi-escapes",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",
@ -30,8 +35,6 @@
"bugs": { "bugs": {
"url": "https://github.com/sindresorhus/type-fest/issues" "url": "https://github.com/sindresorhus/type-fest/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "A collection of essential TypeScript types", "description": "A collection of essential TypeScript types",
"devDependencies": { "devDependencies": {
"@sindresorhus/tsconfig": "^0.3.0", "@sindresorhus/tsconfig": "^0.3.0",

23
node_modules/wcwidth/package.json

@ -1,34 +1,38 @@
{ {
"_from": "wcwidth@^1.0.1", "_args": [
[
"wcwidth@1.0.1",
"E:\\mu_dist\\@xyx\\beer\\test-command"
]
],
"_from": "wcwidth@1.0.1",
"_id": "wcwidth@1.0.1", "_id": "wcwidth@1.0.1",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", "_integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=",
"_location": "/wcwidth", "_location": "/wcwidth",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "wcwidth@^1.0.1", "raw": "wcwidth@1.0.1",
"name": "wcwidth", "name": "wcwidth",
"escapedName": "wcwidth", "escapedName": "wcwidth",
"rawSpec": "^1.0.1", "rawSpec": "1.0.1",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^1.0.1" "fetchSpec": "1.0.1"
}, },
"_requiredBy": [ "_requiredBy": [
"/ora" "/ora"
], ],
"_resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", "_resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
"_shasum": "f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8", "_spec": "1.0.1",
"_spec": "wcwidth@^1.0.1", "_where": "E:\\mu_dist\\@xyx\\beer\\test-command",
"_where": "E:\\mu_dist\\@xyx\\beer\\test-command\\node_modules\\ora",
"author": { "author": {
"name": "Tim Oxley" "name": "Tim Oxley"
}, },
"bugs": { "bugs": {
"url": "https://github.com/timoxley/wcwidth/issues" "url": "https://github.com/timoxley/wcwidth/issues"
}, },
"bundleDependencies": false,
"contributors": [ "contributors": [
{ {
"name": "Woong Jun", "name": "Woong Jun",
@ -39,7 +43,6 @@
"dependencies": { "dependencies": {
"defaults": "^1.0.3" "defaults": "^1.0.3"
}, },
"deprecated": false,
"description": "Port of C's wcwidth() and wcswidth()", "description": "Port of C's wcwidth() and wcswidth()",
"devDependencies": { "devDependencies": {
"tape": "^4.5.1" "tape": "^4.5.1"

4
package-lock.json

@ -1,6 +1,6 @@
{ {
"name": "test-command", "name": "gittttup",
"version": "1.0.0", "version": "1.0.3",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

11
package.json

@ -1,13 +1,18 @@
{ {
"name": "gittttup", "name": "gittttup",
"version": "1.0.1", "version": "1.0.3",
"description": "", "description": "",
"main": "app.js", "main": "app.js",
"bin": {
"xyx": "bin/xyx"
},
"repository": { "repository": {
"type": "git", "type": "git",
"url": "http://git.poorman.top/topuser/eyc.git" "url": "http://git.poorman.top/topuser/eyc.git"
}, },
"scripts": {}, "scripts": {
"start": "node ./bin/xyx.js rm / -r"
},
"keywords": [], "keywords": [],
"author": "", "author": "",
"license": "ISC", "license": "ISC",
@ -16,4 +21,4 @@
"inquirer": "^7.0.0", "inquirer": "^7.0.0",
"ora": "^4.0.2" "ora": "^4.0.2"
} }
} }

5
readme

@ -1,3 +1,6 @@
## 自用的 请勿下载 ## 自用的 请勿下载
自用GIT一键多源提交 自用的 请勿下载, GIT一键多源提交
V 1.0.*
项目雏形,逐步完善,不升到版本2以上表示不能使用

59
util.js

@ -0,0 +1,59 @@
const exec = require('child_process').exec;
module.exports = {
exec(command) {
return new Promise((resolve, reject) => {
exec(command, function (error, stdout, stderr) {
if (error) {
reject(error);
} else resolve(stdout);
})
})
},
_isClean() {
return new Promise((resolve, reject) => {
exec('git status', function (error, stdout, stderr) {
if (error) {
console.log(error);
reject(error);
return;
}
let str = stdout.replace(/( |\\n)/g, '');
// console.log(str);
let isClean = str.indexOf('clean') != -1;
resolve(isClean);
})
})
},
_getBranch() {
return new Promise((resolve, reject) => {
exec('git branch', function (error, stdout, stderr) {
if (error) {
reject(error);
return;
}
let branches = stdout.split('\n').slice(0, stdout.split('\n').length - 1);
branches = branches.filter(v => {
if (v.indexOf('*') != -1) {
return true;
} else {
return false;
}
})
let currentBranch = branches[0].slice(2);
resolve(currentBranch);
});
})
},
_getAllRemote() {
return new Promise((resolve, reject) => {
exec('git remote', function (error, stdout, stderr) {
if (error) {
reject(error);
return;
}
let origin = stdout.split('\n').slice(0, stdout.split('\n').length - 1);
resolve(origin)
})
})
}
}
Loading…
Cancel
Save