forked from embee/woomy
		
	Synced changes
This commit is contained in:
		
							parent
							
								
									93abdb367d
								
							
						
					
					
						commit
						c0111e0943
					
				
					 5 changed files with 220 additions and 33 deletions
				
			
		| 
						 | 
				
			
			@ -4,7 +4,7 @@ exports.conf = {
 | 
			
		|||
  aliases: [],
 | 
			
		||||
  permLevel: 'User',
 | 
			
		||||
  requiredPerms: [],
 | 
			
		||||
  cooldown: 2000
 | 
			
		||||
  cooldown: 5000
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
exports.help = {
 | 
			
		||||
| 
						 | 
				
			
			@ -15,8 +15,8 @@ exports.help = {
 | 
			
		|||
}
 | 
			
		||||
 | 
			
		||||
exports.run = async (client, message) => {
 | 
			
		||||
  const msg = await message.channel.send('⏱️ Please wait...')
 | 
			
		||||
  const msg = await message.channel.send('Pinging...')
 | 
			
		||||
  msg.edit(
 | 
			
		||||
    `:ping_pong: Pong! Latency is ${msg.createdTimestamp - message.createdTimestamp}ms, API Latency is ${Math.round(client.ws.ping)}ms`
 | 
			
		||||
    `Pong! \`${msg.createdTimestamp - message.createdTimestamp}ms\` (💗\`${Math.round(client.ws.ping)}ms\`)`
 | 
			
		||||
  )
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -34,13 +34,20 @@ module.exports = async (client, message) => {
 | 
			
		|||
    return message.channel.send('You don\'t have permission to run this command!')
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  const delay = () => {
 | 
			
		||||
    setTimeout(() => {
 | 
			
		||||
      client.cooldown.get(cmd).delete(message.author.id);
 | 
			
		||||
      message.channel.send(`${message.member} cooldown has expired for ${command} command.`)
 | 
			
		||||
    }, commands.get(command) * 1000);
 | 
			
		||||
}
 | 
			
		||||
  // Cooldown
 | 
			
		||||
  if (client.cooldown.get(cmd.help.name).has(message.author.id)) {
 | 
			
		||||
    const init = client.cooldown.get(command).get(message.author.id)
 | 
			
		||||
    const curr = new Date()
 | 
			
		||||
    const diff = Math.round((curr - init) / 1000)
 | 
			
		||||
    const time = cmd.conf.cooldown / 1000
 | 
			
		||||
    return message.reply(`this command is on cooldown! You'll be able to use it again in ${time - diff} seconds.`)
 | 
			
		||||
  } else {
 | 
			
		||||
    client.cooldown.get(cmd.help.name).set(message.author.id, new Date())
 | 
			
		||||
 | 
			
		||||
    setTimeout(() => {
 | 
			
		||||
      client.cooldown.get(cmd.help.name).delete(message.author.id)
 | 
			
		||||
    }, client.commands.get(cmd.help.name).conf.cooldown)
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  message.author.permLevel = level
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,4 +1,3 @@
 | 
			
		|||
module.exports = (client) => {
 | 
			
		||||
  client.logger.ready('Connected to Discord as ' + client.user.tag)
 | 
			
		||||
  client.logger.debug(client.cooldown)
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										36
									
								
								index.js
									
										
									
									
									
								
							
							
						
						
									
										36
									
								
								index.js
									
										
									
									
									
								
							| 
						 | 
				
			
			@ -16,23 +16,20 @@ const client = new Discord.Client({ disabledEvents: ['TYPING_START'] })
 | 
			
		|||
// Logger
 | 
			
		||||
client.logger = require('tracer').colorConsole({
 | 
			
		||||
  format: [
 | 
			
		||||
    '{{timestamp}} <{{title}}> {{message}}',
 | 
			
		||||
    '{{timestamp}} [{{title}}] {{file}}: {{message}}',
 | 
			
		||||
    {
 | 
			
		||||
      error: '{{timestamp}} <{{title}}> ({{file}}) {{message}}',
 | 
			
		||||
      fatal: '{{timestamp}} <{{title}}> ({{file}}) {{message}}'
 | 
			
		||||
      log: `{{timestamp}} ${'[{{title}}]'.white} {{file}}: {{message}}`,
 | 
			
		||||
      debug: `{{timestamp}} ${'[{{title}}]'.magenta} {{file}}: {{message}}`,
 | 
			
		||||
      info: `{{timestamp}} ${'[{{title}}]'.cyan} {{file}}: {{message}}`,
 | 
			
		||||
      ready: `{{timestamp}} ${'[{{title}}]'.green} {{file}}: {{message}}`,
 | 
			
		||||
      warn: `{{timestamp}} ${'[{{title}}]'.yellow} {{file}}: {{message}}`,
 | 
			
		||||
      error: `{{timestamp}} ${'[{{title}}]'.red} {{file}}: {{message}}`,
 | 
			
		||||
      fatal: `{{timestamp}} ${'[{{title}}]'.red.bold} {{file}}: {{message}}`
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  dateformat: 'dd-mm-yyyy HH:MM:ss',
 | 
			
		||||
  dateformat: 'yyyy-mm-dd HH:MM:ss',
 | 
			
		||||
  methods: ['log', 'debug', 'info', 'ready', 'warn', 'error', 'fatal'],
 | 
			
		||||
  filters: [{
 | 
			
		||||
    log: colors.white,
 | 
			
		||||
    debug: colors.magenta,
 | 
			
		||||
    info: colors.cyan,
 | 
			
		||||
    ready: colors.green,
 | 
			
		||||
    warn: colors.yellow,
 | 
			
		||||
    error: colors.red,
 | 
			
		||||
    fatal: [colors.red, colors.bold]
 | 
			
		||||
  }]
 | 
			
		||||
  filters: [colors.white]
 | 
			
		||||
})
 | 
			
		||||
 | 
			
		||||
// Load modules
 | 
			
		||||
| 
						 | 
				
			
			@ -64,11 +61,8 @@ const init = async () => {
 | 
			
		|||
  // Load events
 | 
			
		||||
  fs.readdir('./events', (err, files) => {
 | 
			
		||||
    if (err) {
 | 
			
		||||
      client.logger.fatal('Failed to get files in events directory! ' + err);
 | 
			
		||||
 | 
			
		||||
      process.exit();
 | 
			
		||||
 | 
			
		||||
      return;
 | 
			
		||||
      client.logger.fatal('Failed to get files in events directory: ' + err)
 | 
			
		||||
      process.exit()
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    client.logger.info(`Loading ${files.length} events.`)
 | 
			
		||||
| 
						 | 
				
			
			@ -84,11 +78,9 @@ const init = async () => {
 | 
			
		|||
  // Load commands
 | 
			
		||||
  fs.readdir('./commands', (err, files) => {
 | 
			
		||||
    if (err) {
 | 
			
		||||
      client.logger.fatal('Failed to get files in commands directory! ' + err);
 | 
			
		||||
      client.logger.fatal('Failed to get files in commands directory: ' + err)
 | 
			
		||||
 | 
			
		||||
      process.exit();
 | 
			
		||||
 | 
			
		||||
      return;
 | 
			
		||||
      process.exit()
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    client.logger.info(`Loading ${files.length} commands.`)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										189
									
								
								package-lock.json
									
										
									
										generated
									
									
									
								
							
							
						
						
									
										189
									
								
								package-lock.json
									
										
									
										generated
									
									
									
								
							| 
						 | 
				
			
			@ -352,6 +352,14 @@
 | 
			
		|||
      "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz",
 | 
			
		||||
      "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ="
 | 
			
		||||
    },
 | 
			
		||||
    "async": {
 | 
			
		||||
      "version": "2.6.3",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz",
 | 
			
		||||
      "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==",
 | 
			
		||||
      "requires": {
 | 
			
		||||
        "lodash": "^4.17.14"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "asynckit": {
 | 
			
		||||
      "version": "0.4.0",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
 | 
			
		||||
| 
						 | 
				
			
			@ -483,6 +491,30 @@
 | 
			
		|||
      "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
 | 
			
		||||
      "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ="
 | 
			
		||||
    },
 | 
			
		||||
    "color": {
 | 
			
		||||
      "version": "3.0.0",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/color/-/color-3.0.0.tgz",
 | 
			
		||||
      "integrity": "sha512-jCpd5+s0s0t7p3pHQKpnJ0TpQKKdleP71LWcA0aqiljpiuAkOSUFN/dyH8ZwF0hRmFlrIuRhufds1QyEP9EB+w==",
 | 
			
		||||
      "requires": {
 | 
			
		||||
        "color-convert": "^1.9.1",
 | 
			
		||||
        "color-string": "^1.5.2"
 | 
			
		||||
      },
 | 
			
		||||
      "dependencies": {
 | 
			
		||||
        "color-convert": {
 | 
			
		||||
          "version": "1.9.3",
 | 
			
		||||
          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
 | 
			
		||||
          "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
 | 
			
		||||
          "requires": {
 | 
			
		||||
            "color-name": "1.1.3"
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        "color-name": {
 | 
			
		||||
          "version": "1.1.3",
 | 
			
		||||
          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
 | 
			
		||||
          "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "color-convert": {
 | 
			
		||||
      "version": "2.0.1",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
 | 
			
		||||
| 
						 | 
				
			
			@ -496,11 +528,34 @@
 | 
			
		|||
      "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
 | 
			
		||||
      "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 | 
			
		||||
    },
 | 
			
		||||
    "color-string": {
 | 
			
		||||
      "version": "1.5.3",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz",
 | 
			
		||||
      "integrity": "sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==",
 | 
			
		||||
      "requires": {
 | 
			
		||||
        "color-name": "^1.0.0",
 | 
			
		||||
        "simple-swizzle": "^0.2.2"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "colornames": {
 | 
			
		||||
      "version": "1.1.1",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/colornames/-/colornames-1.1.1.tgz",
 | 
			
		||||
      "integrity": "sha1-+IiQMGhcfE/54qVZ9Qd+t2qBb5Y="
 | 
			
		||||
    },
 | 
			
		||||
    "colors": {
 | 
			
		||||
      "version": "1.4.0",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz",
 | 
			
		||||
      "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA=="
 | 
			
		||||
    },
 | 
			
		||||
    "colorspace": {
 | 
			
		||||
      "version": "1.1.2",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.2.tgz",
 | 
			
		||||
      "integrity": "sha512-vt+OoIP2d76xLhjwbBaucYlNSpPsrJWPlBTtwCpQKIu6/CSMutyzX93O/Do0qzpH3YoHEes8YEFXyZ797rEhzQ==",
 | 
			
		||||
      "requires": {
 | 
			
		||||
        "color": "3.0.x",
 | 
			
		||||
        "text-hex": "1.0.x"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "combined-stream": {
 | 
			
		||||
      "version": "1.0.8",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
 | 
			
		||||
| 
						 | 
				
			
			@ -612,6 +667,16 @@
 | 
			
		|||
      "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
 | 
			
		||||
      "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
 | 
			
		||||
    },
 | 
			
		||||
    "diagnostics": {
 | 
			
		||||
      "version": "1.1.1",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/diagnostics/-/diagnostics-1.1.1.tgz",
 | 
			
		||||
      "integrity": "sha512-8wn1PmdunLJ9Tqbx+Fx/ZEuHfJf4NKSN2ZBj7SJC/OWRWha843+WsTjqMe1B5E3p28jqBlp+mJ2fPVxPyNgYKQ==",
 | 
			
		||||
      "requires": {
 | 
			
		||||
        "colorspace": "1.1.x",
 | 
			
		||||
        "enabled": "1.0.x",
 | 
			
		||||
        "kuler": "1.0.x"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "discord.js": {
 | 
			
		||||
      "version": "12.1.1",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/discord.js/-/discord.js-12.1.1.tgz",
 | 
			
		||||
| 
						 | 
				
			
			@ -676,11 +741,24 @@
 | 
			
		|||
      "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
 | 
			
		||||
      "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
 | 
			
		||||
    },
 | 
			
		||||
    "enabled": {
 | 
			
		||||
      "version": "1.0.2",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/enabled/-/enabled-1.0.2.tgz",
 | 
			
		||||
      "integrity": "sha1-ll9lE9LC0cX0ZStkouM5ZGf8L5M=",
 | 
			
		||||
      "requires": {
 | 
			
		||||
        "env-variable": "0.0.x"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "entities": {
 | 
			
		||||
      "version": "1.1.2",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz",
 | 
			
		||||
      "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w=="
 | 
			
		||||
    },
 | 
			
		||||
    "env-variable": {
 | 
			
		||||
      "version": "0.0.6",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/env-variable/-/env-variable-0.0.6.tgz",
 | 
			
		||||
      "integrity": "sha512-bHz59NlBbtS0NhftmR8+ExBEekE7br0e01jw+kk0NDro7TtZzBYZ5ScGPs3OmwnpyfHTHOtr1Y6uedCdrIldtg=="
 | 
			
		||||
    },
 | 
			
		||||
    "es6-error": {
 | 
			
		||||
      "version": "4.1.1",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz",
 | 
			
		||||
| 
						 | 
				
			
			@ -711,6 +789,16 @@
 | 
			
		|||
      "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
 | 
			
		||||
      "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU="
 | 
			
		||||
    },
 | 
			
		||||
    "fast-safe-stringify": {
 | 
			
		||||
      "version": "2.0.7",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz",
 | 
			
		||||
      "integrity": "sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA=="
 | 
			
		||||
    },
 | 
			
		||||
    "fecha": {
 | 
			
		||||
      "version": "2.3.3",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/fecha/-/fecha-2.3.3.tgz",
 | 
			
		||||
      "integrity": "sha512-lUGBnIamTAwk4znq5BcqsDaxSmZ9nDVJaij6NvRt/Tg4R69gERA+otPKbS86ROw9nxVMw2/mp1fnaiWqbs6Sdg=="
 | 
			
		||||
    },
 | 
			
		||||
    "find-cache-dir": {
 | 
			
		||||
      "version": "3.3.1",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz",
 | 
			
		||||
| 
						 | 
				
			
			@ -933,6 +1021,11 @@
 | 
			
		|||
      "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
 | 
			
		||||
      "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
 | 
			
		||||
    },
 | 
			
		||||
    "is-arrayish": {
 | 
			
		||||
      "version": "0.3.2",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
 | 
			
		||||
      "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
 | 
			
		||||
    },
 | 
			
		||||
    "is-fullwidth-code-point": {
 | 
			
		||||
      "version": "3.0.0",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
 | 
			
		||||
| 
						 | 
				
			
			@ -1118,6 +1211,14 @@
 | 
			
		|||
        }
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "kuler": {
 | 
			
		||||
      "version": "1.0.1",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/kuler/-/kuler-1.0.1.tgz",
 | 
			
		||||
      "integrity": "sha512-J9nVUucG1p/skKul6DU3PUZrhs0LPulNaeUOox0IyXDi8S4CztTHs1gQphhuZmzXG7VOQSf6NJfKuzteQLv9gQ==",
 | 
			
		||||
      "requires": {
 | 
			
		||||
        "colornames": "^1.1.1"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "locate-path": {
 | 
			
		||||
      "version": "5.0.0",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
 | 
			
		||||
| 
						 | 
				
			
			@ -1141,6 +1242,18 @@
 | 
			
		|||
      "resolved": "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz",
 | 
			
		||||
      "integrity": "sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw=="
 | 
			
		||||
    },
 | 
			
		||||
    "logform": {
 | 
			
		||||
      "version": "2.1.2",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/logform/-/logform-2.1.2.tgz",
 | 
			
		||||
      "integrity": "sha512-+lZh4OpERDBLqjiwDLpAWNQu6KMjnlXH2ByZwCuSqVPJletw0kTWJf5CgSNAUKn1KUkv3m2cUz/LK8zyEy7wzQ==",
 | 
			
		||||
      "requires": {
 | 
			
		||||
        "colors": "^1.2.1",
 | 
			
		||||
        "fast-safe-stringify": "^2.0.4",
 | 
			
		||||
        "fecha": "^2.3.3",
 | 
			
		||||
        "ms": "^2.1.1",
 | 
			
		||||
        "triple-beam": "^1.3.0"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "m3u8stream": {
 | 
			
		||||
      "version": "0.6.5",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/m3u8stream/-/m3u8stream-0.6.5.tgz",
 | 
			
		||||
| 
						 | 
				
			
			@ -1276,6 +1389,11 @@
 | 
			
		|||
        "wrappy": "1"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "one-time": {
 | 
			
		||||
      "version": "0.0.4",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/one-time/-/one-time-0.0.4.tgz",
 | 
			
		||||
      "integrity": "sha1-+M33eISCb+Tf+T46nMN7HkSAdC4="
 | 
			
		||||
    },
 | 
			
		||||
    "p-limit": {
 | 
			
		||||
      "version": "2.2.2",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.2.tgz",
 | 
			
		||||
| 
						 | 
				
			
			@ -1354,6 +1472,11 @@
 | 
			
		|||
      "resolved": "https://registry.npmjs.org/prism-media/-/prism-media-1.2.1.tgz",
 | 
			
		||||
      "integrity": "sha512-R3EbKwJiYlTvGwcG1DpUt+06DsxOGS5W4AMEHT7oVOjG93MjpdhGX1whHyjnqknylLMupKAsKMEXcTNRbPe6Vw=="
 | 
			
		||||
    },
 | 
			
		||||
    "process-nextick-args": {
 | 
			
		||||
      "version": "2.0.1",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
 | 
			
		||||
      "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
 | 
			
		||||
    },
 | 
			
		||||
    "process-on-spawn": {
 | 
			
		||||
      "version": "1.0.0",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/process-on-spawn/-/process-on-spawn-1.0.0.tgz",
 | 
			
		||||
| 
						 | 
				
			
			@ -1530,6 +1653,14 @@
 | 
			
		|||
      "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz",
 | 
			
		||||
      "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA=="
 | 
			
		||||
    },
 | 
			
		||||
    "simple-swizzle": {
 | 
			
		||||
      "version": "0.2.2",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
 | 
			
		||||
      "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=",
 | 
			
		||||
      "requires": {
 | 
			
		||||
        "is-arrayish": "^0.3.1"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "sntp": {
 | 
			
		||||
      "version": "1.0.9",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz",
 | 
			
		||||
| 
						 | 
				
			
			@ -1589,6 +1720,11 @@
 | 
			
		|||
        }
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "stack-trace": {
 | 
			
		||||
      "version": "0.0.10",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz",
 | 
			
		||||
      "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA="
 | 
			
		||||
    },
 | 
			
		||||
    "stealthy-require": {
 | 
			
		||||
      "version": "1.1.1",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz",
 | 
			
		||||
| 
						 | 
				
			
			@ -1645,6 +1781,11 @@
 | 
			
		|||
        "minimatch": "^3.0.4"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "text-hex": {
 | 
			
		||||
      "version": "1.0.0",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz",
 | 
			
		||||
      "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg=="
 | 
			
		||||
    },
 | 
			
		||||
    "tinytim": {
 | 
			
		||||
      "version": "0.1.1",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/tinytim/-/tinytim-0.1.1.tgz",
 | 
			
		||||
| 
						 | 
				
			
			@ -1675,6 +1816,11 @@
 | 
			
		|||
        "tinytim": "0.1.1"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "triple-beam": {
 | 
			
		||||
      "version": "1.3.0",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz",
 | 
			
		||||
      "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw=="
 | 
			
		||||
    },
 | 
			
		||||
    "tunnel-agent": {
 | 
			
		||||
      "version": "0.6.0",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
 | 
			
		||||
| 
						 | 
				
			
			@ -1701,6 +1847,11 @@
 | 
			
		|||
        "is-typedarray": "^1.0.0"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "util-deprecate": {
 | 
			
		||||
      "version": "1.0.2",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
 | 
			
		||||
      "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
 | 
			
		||||
    },
 | 
			
		||||
    "uuid": {
 | 
			
		||||
      "version": "3.4.0",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
 | 
			
		||||
| 
						 | 
				
			
			@ -1736,6 +1887,44 @@
 | 
			
		|||
      "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
 | 
			
		||||
      "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho="
 | 
			
		||||
    },
 | 
			
		||||
    "winston-transport": {
 | 
			
		||||
      "version": "4.3.0",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.3.0.tgz",
 | 
			
		||||
      "integrity": "sha512-B2wPuwUi3vhzn/51Uukcao4dIduEiPOcOt9HJ3QeaXgkJ5Z7UwpBzxS4ZGNHtrxrUvTwemsQiSys0ihOf8Mp1A==",
 | 
			
		||||
      "requires": {
 | 
			
		||||
        "readable-stream": "^2.3.6",
 | 
			
		||||
        "triple-beam": "^1.2.0"
 | 
			
		||||
      },
 | 
			
		||||
      "dependencies": {
 | 
			
		||||
        "isarray": {
 | 
			
		||||
          "version": "1.0.0",
 | 
			
		||||
          "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
 | 
			
		||||
          "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
 | 
			
		||||
        },
 | 
			
		||||
        "readable-stream": {
 | 
			
		||||
          "version": "2.3.7",
 | 
			
		||||
          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
 | 
			
		||||
          "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
 | 
			
		||||
          "requires": {
 | 
			
		||||
            "core-util-is": "~1.0.0",
 | 
			
		||||
            "inherits": "~2.0.3",
 | 
			
		||||
            "isarray": "~1.0.0",
 | 
			
		||||
            "process-nextick-args": "~2.0.0",
 | 
			
		||||
            "safe-buffer": "~5.1.1",
 | 
			
		||||
            "string_decoder": "~1.1.1",
 | 
			
		||||
            "util-deprecate": "~1.0.1"
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        "string_decoder": {
 | 
			
		||||
          "version": "1.1.1",
 | 
			
		||||
          "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
 | 
			
		||||
          "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
 | 
			
		||||
          "requires": {
 | 
			
		||||
            "safe-buffer": "~5.1.0"
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "wrap-ansi": {
 | 
			
		||||
      "version": "6.2.0",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue