pax_global_header00006660000000000000000000000064134726263630014526gustar00rootroot0000000000000052 comment=d45bc8af3b5c53a3adfa2c5fc107b4fae054f579 chrome-trace-event-1.0.2/000077500000000000000000000000001347262636300152165ustar00rootroot00000000000000chrome-trace-event-1.0.2/.gitignore000066400000000000000000000001201347262636300171770ustar00rootroot00000000000000/tmp /node_modules /npm-debug.log /examples/*.log /examples/*.json *.log dist/ chrome-trace-event-1.0.2/.npmignore000066400000000000000000000002021347262636300172070ustar00rootroot00000000000000/tmp /node_modules /npm-debug.log /examples/*.log /examples/*.json /tools /test /examples /CHANGES.md /README.md /TODO.txt lib/ chrome-trace-event-1.0.2/.travis.yml000066400000000000000000000004111347262636300173230ustar00rootroot00000000000000sudo: false dist: trusty language: node_js script: - yarn build - yarn test - yarn check_format branches: only: - master cache: yarn: true matrix: include: - os: linux node_js: "8" - os: linux node_js: "6" fast_finish: true chrome-trace-event-1.0.2/CHANGES.md000066400000000000000000000005651347262636300166160ustar00rootroot00000000000000# node-trace-event changelog ## 1.3.1 (not yet released) (nothing yet) ## 1.3.0 - Add `.child()` option to `trace_event.createBunyanTracer()` object. ## 1.2.0 - Add `trace_event.createBunyanLogger()` usage for some sugar. See the README.md for details. ## 1.1.0 - Rename to 'trace-event', which is a much more accurate name. ## 1.0.0 First release. chrome-trace-event-1.0.2/LICENSE.txt000066400000000000000000000021201347262636300170340ustar00rootroot00000000000000# This is the MIT license Copyright (c) 2015 Joyent Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. chrome-trace-event-1.0.2/Makefile000066400000000000000000000020711347262636300166560ustar00rootroot00000000000000 TAPE = ./node_modules/.bin/tape JSSTYLE_FILES := $(shell find lib test -name "*.js") all $(TAPE): npm install .PHONY: clean clean: rm -rf examples/*.json examples/*.log .PHONY: distclean distclean: clean rm -rf node_modules .PHONY: test test: | $(TAPE) $(TAPE) test/*.test.js .PHONY: check-jsstyle check-jsstyle: $(JSSTYLE_FILES) ./tools/jsstyle -o indent=4,doxygen,unparenthesized-return=0,blank-after-start-comment=0,leading-right-paren-ok $(JSSTYLE_FILES) .PHONY: check check: check-jsstyle @echo "Check ok." # Ensure CHANGES.md and package.json have the same version. .PHONY: versioncheck versioncheck: @echo version is: $(shell cat package.json | json version) [[ `cat package.json | json version` == `grep '^## ' CHANGES.md | head -1 | awk '{print $$2}'` ]] .PHONY: cutarelease cutarelease: versioncheck [[ `git status | tail -n1` == "nothing to commit, working directory clean" ]] ./tools/cutarelease.py -p trace-event -f package.json .PHONY: git-hooks git-hooks: [[ -e .git/hooks/pre-commit ]] || ln -s ../../tools/pre-commit.sh .git/hooks/pre-commit chrome-trace-event-1.0.2/README.md000066400000000000000000000015751347262636300165050ustar00rootroot00000000000000[![Build Status](https://travis-ci.org/samccone/chrome-trace-event.svg?branch=master)](https://travis-ci.org/samccone/chrome-trace-event) chrome-trace-event: A node library for creating trace event logs of program execution according to [Google's Trace Event format](https://docs.google.com/document/d/1CvAClvFfyA5R-PhYUmn5OOQtYMH4h6I0nSsKchNAySU). These logs can then be visualized with [trace-viewer](https://github.com/google/trace-viewer) or chrome devtools to grok one's programs. # Install npm install chrome-trace-event # Usage ```javascript const Trace = require("chrome-trace-event").Tracer; const trace = new Trace({ noStream: true }); trace.pipe(fs.createWriteStream(outPath)); trace.flush(); ``` # Links * https://github.com/google/trace-viewer/wiki * https://docs.google.com/document/d/1CvAClvFfyA5R-PhYUmn5OOQtYMH4h6I0nSsKchNAySU # License MIT. See LICENSE.txt. chrome-trace-event-1.0.2/examples/000077500000000000000000000000001347262636300170345ustar00rootroot00000000000000chrome-trace-event-1.0.2/examples/child.js000066400000000000000000000014231347262636300204550ustar00rootroot00000000000000/* * Show `evt.child()` usage for more practical usage. `.child(fields)` * allows you to bind common fields to emited events. */ var fs = require("fs"); var EVT = new (require("../dist/trace-event")).Tracer(); EVT.pipe(process.stdout); function doSubTaskA(opts, cb) { var evt = EVT.child({ id: opts.id, name: "doSubTaskA" }); evt.begin(); setTimeout(function() { // ... evt.end(); cb(); }, Math.floor(Math.random() * 2000)); } function doSomething(opts, cb) { var evt = EVT.child({ id: opts.id, name: "doSomething" }); evt.begin(); setTimeout(function() { // ... doSubTaskA(opts, function() { evt.end(); cb(); }); }, Math.floor(Math.random() * 2000)); } for (var i = 0; i < 5; i++) { doSomething({ id: i }, function() {}); } chrome-trace-event-1.0.2/examples/event-log.js000066400000000000000000000016621347262636300212770ustar00rootroot00000000000000/* * A simple example showing piping event traces to a 'events.log' file. * * Usage: * $ node event-log.js * hi * bye * $ cat events.log * [{"ts":213699797444,"pid":42628,"tid":42628,"ph":"b","cat":"default","args":{},"name":"doSomething","id":"abc"}, * {"ts":213700798563,"pid":42628,"tid":42628,"ph":"e","cat":"default","args":{},"name":"doSomething","id":"abc"}, */ var fs = require("fs"); var evt = new (require("../dist/trace-event")).Tracer(); evt.pipe(fs.createWriteStream("events.log")); console.log('Streaming events to "events.log"'); // Instrument code with evt.{begin|instant|end} calls. function doSomething(cb) { evt.begin({ name: "doSomething", id: "abc" }); // Takes 1s to do all this processing for "something". setTimeout(function() { evt.end({ name: "doSomething", id: "abc" }); cb(); }, 1000); } console.log("hi"); doSomething(function() { console.log("bye"); }); chrome-trace-event-1.0.2/examples/hello.js000066400000000000000000000022341347262636300204760ustar00rootroot00000000000000/* * A first example showing trace-event usage. * We emit begin/end events for a single call to `doSomething()`. */ /* * First create the tracer `evt` that we'll use for instrumenting code. * * Notes: * - More realistically we'd stream these to an event log file (see * examples/event-log.js). This just shows you the default output. * - By default the emitted 'data' events are make up a JSON array of * event objects, suitable for piping directly to stdout or a file. * This format is as expected by * [`trace2html`](https://github.com/google/trace-viewer#readme). * - See examples/object-mode.js for raw event objects. * - See examples/child.js for a larger example. */ var evt = new (require("../dist/trace-event")).Tracer(); evt.on("data", function(data) { console.log("EVENT: %j", data); }); // Instrument code with evt.{begin|instant|end} calls. function doSomething(cb) { evt.begin({ name: "doSomething", id: "1" }); // Takes 1s to do all this processing for "something". setTimeout(function() { evt.end({ name: "doSomething", id: "1" }); cb(); }, 1000); } console.log("hi"); doSomething(function() { console.log("bye"); }); chrome-trace-event-1.0.2/examples/object-mode.js000066400000000000000000000005561347262636300215700ustar00rootroot00000000000000/* * Show that `{objectMode: true}` is available on a Tracer * to get raw JSON event object output. */ var evt = new (require("../dist/trace-event")).Tracer({ objectMode: true }); evt.on("data", function(ev) { console.log('EVENT (type "%s"): %j', typeof ev, ev); }); evt.begin({ name: "doSomething", id: "abc" }); evt.end({ name: "doSomething", id: "abc" }); chrome-trace-event-1.0.2/lib/000077500000000000000000000000001347262636300157645ustar00rootroot00000000000000chrome-trace-event-1.0.2/lib/trace-event.ts000066400000000000000000000121751347262636300205570ustar00rootroot00000000000000/** * trace-event - A library to create a trace of your node app per * Google's Trace Event format: * // JSSTYLED * https://docs.google.com/document/d/1CvAClvFfyA5R-PhYUmn5OOQtYMH4h6I0nSsKchNAySU */ import { Readable as ReadableStream, ReadableOptions } from "stream"; // ---- internal support stuff export interface Event { ts: number; pid: number; tid: number; /** event phase */ ph?: string; [otherData: string]: any; } function evCommon(): Event { var hrtime = process.hrtime(); // [seconds, nanoseconds] var ts = hrtime[0] * 1000000 + Math.round(hrtime[1] / 1000); // microseconds return { ts, pid: process.pid, tid: process.pid // no meaningful tid for node.js }; } // ---- Tracer export interface Fields { cat?: any; args?: any; [filedName: string]: any; } export interface TracerOptions { parent?: Tracer | null; fields?: Fields | null; objectMode?: boolean | null; noStream?: boolean; } export class Tracer extends ReadableStream { private _objectMode!: boolean; /** Node Stream internal APIs */ private _push: any; private firstPush?: boolean; private noStream: boolean = false; private events: Event[] = []; private parent!: Tracer | null | undefined; private fields!: Fields | null | undefined; constructor(opts: TracerOptions = {}) { super(); if (typeof opts !== "object") { throw new Error("Invalid options passed (must be an object)"); } if (opts.parent != null && typeof opts.parent !== "object") { throw new Error("Invalid option (parent) passed (must be an object)"); } if (opts.fields != null && typeof opts.fields !== "object") { throw new Error("Invalid option (fields) passed (must be an object)"); } if ( opts.objectMode != null && (opts.objectMode !== true && opts.objectMode !== false) ) { throw new Error( "Invalid option (objectsMode) passed (must be a boolean)" ); } this.noStream = opts.noStream || false; this.parent = opts.parent; if (this.parent) { this.fields = Object.assign({}, opts.parent && opts.parent.fields); } else { this.fields = {}; } if (opts.fields) { Object.assign(this.fields, opts.fields); } if (!this.fields.cat) { // trace-viewer *requires* `cat`, so let's have a fallback. this.fields.cat = "default"; } else if (Array.isArray(this.fields.cat)) { this.fields.cat = this.fields.cat.join(","); } if (!this.fields.args) { // trace-viewer *requires* `args`, so let's have a fallback. this.fields.args = {}; } if (this.parent) { // TODO: Not calling Readable ctor here. Does that cause probs? // Probably if trying to pipe from the child. // Might want a serpate TracerChild class for these guys. this._push = this.parent._push.bind(this.parent); } else { this._objectMode = Boolean(opts.objectMode); var streamOpts: ReadableOptions = { objectMode: this._objectMode }; if (this._objectMode) { this._push = this.push; } else { this._push = this._pushString; streamOpts.encoding = "utf8"; } ReadableStream.call(this, streamOpts); } } /** * If in no streamMode in order to flush out the trace * you need to call flush. */ public flush() { if (this.noStream === true) { for (const evt of this.events) { this._push(evt); } this._flush(); } } _read(_: number) {} private _pushString(ev: Event) { var separator = ""; if (!this.firstPush) { this.push("["); this.firstPush = true; } else { separator = ",\n"; } this.push(separator + JSON.stringify(ev), "utf8"); } private _flush() { if (!this._objectMode) { this.push("]"); } } public child(fields: Fields) { return new Tracer({ parent: this, fields: fields }); } public begin(fields: Fields) { return this.mkEventFunc("b")(fields); } public end(fields: Fields) { return this.mkEventFunc("e")(fields); } public completeEvent(fields: Fields) { return this.mkEventFunc("X")(fields); } public instantEvent(fields: Fields) { return this.mkEventFunc("I")(fields); } public mkEventFunc(ph: string) { return (fields: Fields) => { var ev = evCommon(); // Assign the event phase. ev.ph = ph; if (fields) { if (typeof fields === "string") { ev.name = fields; } else { for (const k of Object.keys(fields)) { if (k === "cat") { ev.cat = fields.cat.join(","); } else { ev[k] = fields[k]; } } } } if (!this.noStream) { this._push(ev); } else { this.events.push(ev); } }; } } /* * These correspond to the "Async events" in the Trace Events doc. * * Required fields: * - name * - id * * Optional fields: * - cat (array) * - args (object) * - TODO: stack fields, other optional fields? * * Dev Note: We don't explicitly assert that correct fields are * used for speed (premature optimization alert!). */ chrome-trace-event-1.0.2/package-lock.json000066400000000000000000002572671347262636300204550ustar00rootroot00000000000000{ "name": "chrome-trace-event", "version": "1.0.2", "lockfileVersion": 1, "requires": true, "dependencies": { "@types/node": { "version": "9.6.5", "dev": true }, "balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", "dev": true }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", "dev": true }, "deep-equal": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=", "dev": true }, "define-properties": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", "dev": true, "requires": { "object-keys": "^1.0.12" } }, "defined": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", "dev": true }, "es-abstract": { "version": "1.13.0", "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz", "integrity": "sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==", "dev": true, "requires": { "es-to-primitive": "^1.2.0", "function-bind": "^1.1.1", "has": "^1.0.3", "is-callable": "^1.1.4", "is-regex": "^1.0.4", "object-keys": "^1.0.12" } }, "es-to-primitive": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz", "integrity": "sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==", "dev": true, "requires": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", "is-symbol": "^1.0.2" } }, "for-each": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz", "integrity": "sha1-LEBFC5NI6X8oEyJZO6lnBLmr1NQ=", "dev": true, "requires": { "is-function": "~1.0.0" } }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", "dev": true }, "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", "dev": true }, "glob": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }, "has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dev": true, "requires": { "function-bind": "^1.1.1" } }, "has-symbols": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=", "dev": true }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", "dev": true, "requires": { "once": "^1.3.0", "wrappy": "1" } }, "inherits": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", "dev": true }, "is-callable": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==", "dev": true }, "is-date-object": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", "dev": true }, "is-function": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz", "integrity": "sha1-Es+5i2W1fdPRk6MSH19uL0N2ArU=", "dev": true }, "is-regex": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", "dev": true, "requires": { "has": "^1.0.1" } }, "is-symbol": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz", "integrity": "sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==", "dev": true, "requires": { "has-symbols": "^1.0.0" } }, "minimatch": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", "dev": true, "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", "dev": true }, "npm": { "version": "6.9.0", "resolved": "https://registry.npmjs.org/npm/-/npm-6.9.0.tgz", "integrity": "sha512-91V+zB5hDxO+Jyp2sUKS7juHlIM95dGQxTeQtmZI1nAI/7kjWXFipPrtwwKjhyKmV4GsS2LzJhrxRjGWsU9z/w==", "requires": { "JSONStream": "^1.3.5", "abbrev": "~1.1.1", "ansicolors": "~0.3.2", "ansistyles": "~0.1.3", "aproba": "^2.0.0", "archy": "~1.0.0", "bin-links": "^1.1.2", "bluebird": "^3.5.3", "byte-size": "^5.0.1", "cacache": "^11.3.2", "call-limit": "~1.1.0", "chownr": "^1.1.1", "ci-info": "^2.0.0", "cli-columns": "^3.1.2", "cli-table3": "^0.5.1", "cmd-shim": "~2.0.2", "columnify": "~1.5.4", "config-chain": "^1.1.12", "debuglog": "*", "detect-indent": "~5.0.0", "detect-newline": "^2.1.0", "dezalgo": "~1.0.3", "editor": "~1.0.0", "figgy-pudding": "^3.5.1", "find-npm-prefix": "^1.0.2", "fs-vacuum": "~1.2.10", "fs-write-stream-atomic": "~1.0.10", "gentle-fs": "^2.0.1", "glob": "^7.1.3", "graceful-fs": "^4.1.15", "has-unicode": "~2.0.1", "hosted-git-info": "^2.7.1", "iferr": "^1.0.2", "imurmurhash": "*", "inflight": "~1.0.6", "inherits": "~2.0.3", "ini": "^1.3.5", "init-package-json": "^1.10.3", "is-cidr": "^3.0.0", "json-parse-better-errors": "^1.0.2", "lazy-property": "~1.0.0", "libcipm": "^3.0.3", "libnpm": "^2.0.1", "libnpmaccess": "*", "libnpmhook": "^5.0.2", "libnpmorg": "*", "libnpmsearch": "*", "libnpmteam": "*", "libnpx": "^10.2.0", "lock-verify": "^2.1.0", "lockfile": "^1.0.4", "lodash._baseindexof": "*", "lodash._baseuniq": "~4.6.0", "lodash._bindcallback": "*", "lodash._cacheindexof": "*", "lodash._createcache": "*", "lodash._getnative": "*", "lodash.clonedeep": "~4.5.0", "lodash.restparam": "*", "lodash.union": "~4.6.0", "lodash.uniq": "~4.5.0", "lodash.without": "~4.4.0", "lru-cache": "^4.1.5", "meant": "~1.0.1", "mississippi": "^3.0.0", "mkdirp": "~0.5.1", "move-concurrently": "^1.0.1", "node-gyp": "^3.8.0", "nopt": "~4.0.1", "normalize-package-data": "^2.5.0", "npm-audit-report": "^1.3.2", "npm-cache-filename": "~1.0.2", "npm-install-checks": "~3.0.0", "npm-lifecycle": "^2.1.0", "npm-package-arg": "^6.1.0", "npm-packlist": "^1.4.1", "npm-pick-manifest": "^2.2.3", "npm-profile": "*", "npm-registry-fetch": "^3.9.0", "npm-user-validate": "~1.0.0", "npmlog": "~4.1.2", "once": "~1.4.0", "opener": "^1.5.1", "osenv": "^0.1.5", "pacote": "^9.5.0", "path-is-inside": "~1.0.2", "promise-inflight": "~1.0.1", "qrcode-terminal": "^0.12.0", "query-string": "^6.2.0", "qw": "~1.0.1", "read": "~1.0.7", "read-cmd-shim": "~1.0.1", "read-installed": "~4.0.3", "read-package-json": "^2.0.13", "read-package-tree": "^5.2.2", "readable-stream": "^3.1.1", "readdir-scoped-modules": "*", "request": "^2.88.0", "retry": "^0.12.0", "rimraf": "^2.6.3", "safe-buffer": "^5.1.2", "semver": "^5.6.0", "sha": "~2.0.1", "slide": "~1.1.6", "sorted-object": "~2.0.1", "sorted-union-stream": "~2.1.3", "ssri": "^6.0.1", "stringify-package": "^1.0.0", "tar": "^4.4.8", "text-table": "~0.2.0", "tiny-relative-date": "^1.3.0", "uid-number": "0.0.6", "umask": "~1.1.0", "unique-filename": "^1.1.1", "unpipe": "~1.0.0", "update-notifier": "^2.5.0", "uuid": "^3.3.2", "validate-npm-package-license": "^3.0.4", "validate-npm-package-name": "~3.0.0", "which": "^1.3.1", "worker-farm": "^1.6.0", "write-file-atomic": "^2.4.2" }, "dependencies": { "JSONStream": { "version": "1.3.5", "bundled": true, "requires": { "jsonparse": "^1.2.0", "through": ">=2.2.7 <3" } }, "abbrev": { "version": "1.1.1", "bundled": true }, "agent-base": { "version": "4.2.1", "bundled": true, "requires": { "es6-promisify": "^5.0.0" } }, "agentkeepalive": { "version": "3.4.1", "bundled": true, "requires": { "humanize-ms": "^1.2.1" } }, "ajv": { "version": "5.5.2", "bundled": true, "requires": { "co": "^4.6.0", "fast-deep-equal": "^1.0.0", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.3.0" } }, "ansi-align": { "version": "2.0.0", "bundled": true, "requires": { "string-width": "^2.0.0" } }, "ansi-regex": { "version": "2.1.1", "bundled": true }, "ansi-styles": { "version": "3.2.1", "bundled": true, "requires": { "color-convert": "^1.9.0" } }, "ansicolors": { "version": "0.3.2", "bundled": true }, "ansistyles": { "version": "0.1.3", "bundled": true }, "aproba": { "version": "2.0.0", "bundled": true }, "archy": { "version": "1.0.0", "bundled": true }, "are-we-there-yet": { "version": "1.1.4", "bundled": true, "requires": { "delegates": "^1.0.0", "readable-stream": "^2.0.6" }, "dependencies": { "readable-stream": { "version": "2.3.6", "bundled": true, "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", "bundled": true, "requires": { "safe-buffer": "~5.1.0" } } } }, "asap": { "version": "2.0.6", "bundled": true }, "asn1": { "version": "0.2.4", "bundled": true, "requires": { "safer-buffer": "~2.1.0" } }, "assert-plus": { "version": "1.0.0", "bundled": true }, "asynckit": { "version": "0.4.0", "bundled": true }, "aws-sign2": { "version": "0.7.0", "bundled": true }, "aws4": { "version": "1.8.0", "bundled": true }, "balanced-match": { "version": "1.0.0", "bundled": true }, "bcrypt-pbkdf": { "version": "1.0.2", "bundled": true, "optional": true, "requires": { "tweetnacl": "^0.14.3" } }, "bin-links": { "version": "1.1.2", "bundled": true, "requires": { "bluebird": "^3.5.0", "cmd-shim": "^2.0.2", "gentle-fs": "^2.0.0", "graceful-fs": "^4.1.11", "write-file-atomic": "^2.3.0" } }, "block-stream": { "version": "0.0.9", "bundled": true, "requires": { "inherits": "~2.0.0" } }, "bluebird": { "version": "3.5.3", "bundled": true }, "boxen": { "version": "1.3.0", "bundled": true, "requires": { "ansi-align": "^2.0.0", "camelcase": "^4.0.0", "chalk": "^2.0.1", "cli-boxes": "^1.0.0", "string-width": "^2.0.0", "term-size": "^1.2.0", "widest-line": "^2.0.0" } }, "brace-expansion": { "version": "1.1.11", "bundled": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "buffer-from": { "version": "1.0.0", "bundled": true }, "builtins": { "version": "1.0.3", "bundled": true }, "byline": { "version": "5.0.0", "bundled": true }, "byte-size": { "version": "5.0.1", "bundled": true }, "cacache": { "version": "11.3.2", "bundled": true, "requires": { "bluebird": "^3.5.3", "chownr": "^1.1.1", "figgy-pudding": "^3.5.1", "glob": "^7.1.3", "graceful-fs": "^4.1.15", "lru-cache": "^5.1.1", "mississippi": "^3.0.0", "mkdirp": "^0.5.1", "move-concurrently": "^1.0.1", "promise-inflight": "^1.0.1", "rimraf": "^2.6.2", "ssri": "^6.0.1", "unique-filename": "^1.1.1", "y18n": "^4.0.0" }, "dependencies": { "chownr": { "version": "1.1.1", "bundled": true }, "lru-cache": { "version": "5.1.1", "bundled": true, "requires": { "yallist": "^3.0.2" } }, "unique-filename": { "version": "1.1.1", "bundled": true, "requires": { "unique-slug": "^2.0.0" } }, "yallist": { "version": "3.0.3", "bundled": true } } }, "call-limit": { "version": "1.1.0", "bundled": true }, "camelcase": { "version": "4.1.0", "bundled": true }, "capture-stack-trace": { "version": "1.0.0", "bundled": true }, "caseless": { "version": "0.12.0", "bundled": true }, "chalk": { "version": "2.4.1", "bundled": true, "requires": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }, "chownr": { "version": "1.1.1", "bundled": true }, "ci-info": { "version": "2.0.0", "bundled": true }, "cidr-regex": { "version": "2.0.10", "bundled": true, "requires": { "ip-regex": "^2.1.0" } }, "cli-boxes": { "version": "1.0.0", "bundled": true }, "cli-columns": { "version": "3.1.2", "bundled": true, "requires": { "string-width": "^2.0.0", "strip-ansi": "^3.0.1" } }, "cli-table3": { "version": "0.5.1", "bundled": true, "requires": { "colors": "^1.1.2", "object-assign": "^4.1.0", "string-width": "^2.1.1" } }, "cliui": { "version": "4.1.0", "bundled": true, "requires": { "string-width": "^2.1.1", "strip-ansi": "^4.0.0", "wrap-ansi": "^2.0.0" }, "dependencies": { "ansi-regex": { "version": "3.0.0", "bundled": true }, "strip-ansi": { "version": "4.0.0", "bundled": true, "requires": { "ansi-regex": "^3.0.0" } } } }, "clone": { "version": "1.0.4", "bundled": true }, "cmd-shim": { "version": "2.0.2", "bundled": true, "requires": { "graceful-fs": "^4.1.2", "mkdirp": "~0.5.0" } }, "co": { "version": "4.6.0", "bundled": true }, "code-point-at": { "version": "1.1.0", "bundled": true }, "color-convert": { "version": "1.9.1", "bundled": true, "requires": { "color-name": "^1.1.1" } }, "color-name": { "version": "1.1.3", "bundled": true }, "colors": { "version": "1.3.3", "bundled": true, "optional": true }, "columnify": { "version": "1.5.4", "bundled": true, "requires": { "strip-ansi": "^3.0.0", "wcwidth": "^1.0.0" } }, "combined-stream": { "version": "1.0.6", "bundled": true, "requires": { "delayed-stream": "~1.0.0" } }, "concat-map": { "version": "0.0.1", "bundled": true }, "concat-stream": { "version": "1.6.2", "bundled": true, "requires": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", "readable-stream": "^2.2.2", "typedarray": "^0.0.6" }, "dependencies": { "readable-stream": { "version": "2.3.6", "bundled": true, "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", "bundled": true, "requires": { "safe-buffer": "~5.1.0" } } } }, "config-chain": { "version": "1.1.12", "bundled": true, "requires": { "ini": "^1.3.4", "proto-list": "~1.2.1" } }, "configstore": { "version": "3.1.2", "bundled": true, "requires": { "dot-prop": "^4.1.0", "graceful-fs": "^4.1.2", "make-dir": "^1.0.0", "unique-string": "^1.0.0", "write-file-atomic": "^2.0.0", "xdg-basedir": "^3.0.0" } }, "console-control-strings": { "version": "1.1.0", "bundled": true }, "copy-concurrently": { "version": "1.0.5", "bundled": true, "requires": { "aproba": "^1.1.1", "fs-write-stream-atomic": "^1.0.8", "iferr": "^0.1.5", "mkdirp": "^0.5.1", "rimraf": "^2.5.4", "run-queue": "^1.0.0" }, "dependencies": { "aproba": { "version": "1.2.0", "bundled": true }, "iferr": { "version": "0.1.5", "bundled": true } } }, "core-util-is": { "version": "1.0.2", "bundled": true }, "create-error-class": { "version": "3.0.2", "bundled": true, "requires": { "capture-stack-trace": "^1.0.0" } }, "cross-spawn": { "version": "5.1.0", "bundled": true, "requires": { "lru-cache": "^4.0.1", "shebang-command": "^1.2.0", "which": "^1.2.9" } }, "crypto-random-string": { "version": "1.0.0", "bundled": true }, "cyclist": { "version": "0.2.2", "bundled": true }, "dashdash": { "version": "1.14.1", "bundled": true, "requires": { "assert-plus": "^1.0.0" } }, "debug": { "version": "3.1.0", "bundled": true, "requires": { "ms": "2.0.0" }, "dependencies": { "ms": { "version": "2.0.0", "bundled": true } } }, "debuglog": { "version": "1.0.1", "bundled": true }, "decamelize": { "version": "1.2.0", "bundled": true }, "decode-uri-component": { "version": "0.2.0", "bundled": true }, "deep-extend": { "version": "0.5.1", "bundled": true }, "defaults": { "version": "1.0.3", "bundled": true, "requires": { "clone": "^1.0.2" } }, "delayed-stream": { "version": "1.0.0", "bundled": true }, "delegates": { "version": "1.0.0", "bundled": true }, "detect-indent": { "version": "5.0.0", "bundled": true }, "detect-newline": { "version": "2.1.0", "bundled": true }, "dezalgo": { "version": "1.0.3", "bundled": true, "requires": { "asap": "^2.0.0", "wrappy": "1" } }, "dot-prop": { "version": "4.2.0", "bundled": true, "requires": { "is-obj": "^1.0.0" } }, "dotenv": { "version": "5.0.1", "bundled": true }, "duplexer3": { "version": "0.1.4", "bundled": true }, "duplexify": { "version": "3.6.0", "bundled": true, "requires": { "end-of-stream": "^1.0.0", "inherits": "^2.0.1", "readable-stream": "^2.0.0", "stream-shift": "^1.0.0" }, "dependencies": { "readable-stream": { "version": "2.3.6", "bundled": true, "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", "bundled": true, "requires": { "safe-buffer": "~5.1.0" } } } }, "ecc-jsbn": { "version": "0.1.2", "bundled": true, "optional": true, "requires": { "jsbn": "~0.1.0", "safer-buffer": "^2.1.0" } }, "editor": { "version": "1.0.0", "bundled": true }, "encoding": { "version": "0.1.12", "bundled": true, "requires": { "iconv-lite": "~0.4.13" } }, "end-of-stream": { "version": "1.4.1", "bundled": true, "requires": { "once": "^1.4.0" } }, "err-code": { "version": "1.1.2", "bundled": true }, "errno": { "version": "0.1.7", "bundled": true, "requires": { "prr": "~1.0.1" } }, "es6-promise": { "version": "4.2.6", "bundled": true }, "es6-promisify": { "version": "5.0.0", "bundled": true, "requires": { "es6-promise": "^4.0.3" } }, "escape-string-regexp": { "version": "1.0.5", "bundled": true }, "execa": { "version": "0.7.0", "bundled": true, "requires": { "cross-spawn": "^5.0.1", "get-stream": "^3.0.0", "is-stream": "^1.1.0", "npm-run-path": "^2.0.0", "p-finally": "^1.0.0", "signal-exit": "^3.0.0", "strip-eof": "^1.0.0" }, "dependencies": { "get-stream": { "version": "3.0.0", "bundled": true } } }, "extend": { "version": "3.0.2", "bundled": true }, "extsprintf": { "version": "1.3.0", "bundled": true }, "fast-deep-equal": { "version": "1.1.0", "bundled": true }, "fast-json-stable-stringify": { "version": "2.0.0", "bundled": true }, "figgy-pudding": { "version": "3.5.1", "bundled": true }, "find-npm-prefix": { "version": "1.0.2", "bundled": true }, "find-up": { "version": "2.1.0", "bundled": true, "requires": { "locate-path": "^2.0.0" } }, "flush-write-stream": { "version": "1.0.3", "bundled": true, "requires": { "inherits": "^2.0.1", "readable-stream": "^2.0.4" }, "dependencies": { "readable-stream": { "version": "2.3.6", "bundled": true, "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", "bundled": true, "requires": { "safe-buffer": "~5.1.0" } } } }, "forever-agent": { "version": "0.6.1", "bundled": true }, "form-data": { "version": "2.3.2", "bundled": true, "requires": { "asynckit": "^0.4.0", "combined-stream": "1.0.6", "mime-types": "^2.1.12" } }, "from2": { "version": "2.3.0", "bundled": true, "requires": { "inherits": "^2.0.1", "readable-stream": "^2.0.0" }, "dependencies": { "readable-stream": { "version": "2.3.6", "bundled": true, "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", "bundled": true, "requires": { "safe-buffer": "~5.1.0" } } } }, "fs-minipass": { "version": "1.2.5", "bundled": true, "requires": { "minipass": "^2.2.1" } }, "fs-vacuum": { "version": "1.2.10", "bundled": true, "requires": { "graceful-fs": "^4.1.2", "path-is-inside": "^1.0.1", "rimraf": "^2.5.2" } }, "fs-write-stream-atomic": { "version": "1.0.10", "bundled": true, "requires": { "graceful-fs": "^4.1.2", "iferr": "^0.1.5", "imurmurhash": "^0.1.4", "readable-stream": "1 || 2" }, "dependencies": { "iferr": { "version": "0.1.5", "bundled": true }, "readable-stream": { "version": "2.3.6", "bundled": true, "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", "bundled": true, "requires": { "safe-buffer": "~5.1.0" } } } }, "fs.realpath": { "version": "1.0.0", "bundled": true }, "fstream": { "version": "1.0.11", "bundled": true, "requires": { "graceful-fs": "^4.1.2", "inherits": "~2.0.0", "mkdirp": ">=0.5 0", "rimraf": "2" } }, "gauge": { "version": "2.7.4", "bundled": true, "requires": { "aproba": "^1.0.3", "console-control-strings": "^1.0.0", "has-unicode": "^2.0.0", "object-assign": "^4.1.0", "signal-exit": "^3.0.0", "string-width": "^1.0.1", "strip-ansi": "^3.0.1", "wide-align": "^1.1.0" }, "dependencies": { "aproba": { "version": "1.2.0", "bundled": true }, "string-width": { "version": "1.0.2", "bundled": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", "strip-ansi": "^3.0.0" } } } }, "genfun": { "version": "5.0.0", "bundled": true }, "gentle-fs": { "version": "2.0.1", "bundled": true, "requires": { "aproba": "^1.1.2", "fs-vacuum": "^1.2.10", "graceful-fs": "^4.1.11", "iferr": "^0.1.5", "mkdirp": "^0.5.1", "path-is-inside": "^1.0.2", "read-cmd-shim": "^1.0.1", "slide": "^1.1.6" }, "dependencies": { "aproba": { "version": "1.2.0", "bundled": true }, "iferr": { "version": "0.1.5", "bundled": true } } }, "get-caller-file": { "version": "1.0.2", "bundled": true }, "get-stream": { "version": "4.1.0", "bundled": true, "requires": { "pump": "^3.0.0" } }, "getpass": { "version": "0.1.7", "bundled": true, "requires": { "assert-plus": "^1.0.0" } }, "glob": { "version": "7.1.3", "bundled": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }, "global-dirs": { "version": "0.1.1", "bundled": true, "requires": { "ini": "^1.3.4" } }, "got": { "version": "6.7.1", "bundled": true, "requires": { "create-error-class": "^3.0.0", "duplexer3": "^0.1.4", "get-stream": "^3.0.0", "is-redirect": "^1.0.0", "is-retry-allowed": "^1.0.0", "is-stream": "^1.0.0", "lowercase-keys": "^1.0.0", "safe-buffer": "^5.0.1", "timed-out": "^4.0.0", "unzip-response": "^2.0.1", "url-parse-lax": "^1.0.0" }, "dependencies": { "get-stream": { "version": "3.0.0", "bundled": true } } }, "graceful-fs": { "version": "4.1.15", "bundled": true }, "har-schema": { "version": "2.0.0", "bundled": true }, "har-validator": { "version": "5.1.0", "bundled": true, "requires": { "ajv": "^5.3.0", "har-schema": "^2.0.0" } }, "has-flag": { "version": "3.0.0", "bundled": true }, "has-unicode": { "version": "2.0.1", "bundled": true }, "hosted-git-info": { "version": "2.7.1", "bundled": true }, "http-cache-semantics": { "version": "3.8.1", "bundled": true }, "http-proxy-agent": { "version": "2.1.0", "bundled": true, "requires": { "agent-base": "4", "debug": "3.1.0" } }, "http-signature": { "version": "1.2.0", "bundled": true, "requires": { "assert-plus": "^1.0.0", "jsprim": "^1.2.2", "sshpk": "^1.7.0" } }, "https-proxy-agent": { "version": "2.2.1", "bundled": true, "requires": { "agent-base": "^4.1.0", "debug": "^3.1.0" } }, "humanize-ms": { "version": "1.2.1", "bundled": true, "requires": { "ms": "^2.0.0" } }, "iconv-lite": { "version": "0.4.23", "bundled": true, "requires": { "safer-buffer": ">= 2.1.2 < 3" } }, "iferr": { "version": "1.0.2", "bundled": true }, "ignore-walk": { "version": "3.0.1", "bundled": true, "requires": { "minimatch": "^3.0.4" } }, "import-lazy": { "version": "2.1.0", "bundled": true }, "imurmurhash": { "version": "0.1.4", "bundled": true }, "inflight": { "version": "1.0.6", "bundled": true, "requires": { "once": "^1.3.0", "wrappy": "1" } }, "inherits": { "version": "2.0.3", "bundled": true }, "ini": { "version": "1.3.5", "bundled": true }, "init-package-json": { "version": "1.10.3", "bundled": true, "requires": { "glob": "^7.1.1", "npm-package-arg": "^4.0.0 || ^5.0.0 || ^6.0.0", "promzard": "^0.3.0", "read": "~1.0.1", "read-package-json": "1 || 2", "semver": "2.x || 3.x || 4 || 5", "validate-npm-package-license": "^3.0.1", "validate-npm-package-name": "^3.0.0" } }, "invert-kv": { "version": "1.0.0", "bundled": true }, "ip": { "version": "1.1.5", "bundled": true }, "ip-regex": { "version": "2.1.0", "bundled": true }, "is-ci": { "version": "1.1.0", "bundled": true, "requires": { "ci-info": "^1.0.0" }, "dependencies": { "ci-info": { "version": "1.6.0", "bundled": true } } }, "is-cidr": { "version": "3.0.0", "bundled": true, "requires": { "cidr-regex": "^2.0.10" } }, "is-fullwidth-code-point": { "version": "1.0.0", "bundled": true, "requires": { "number-is-nan": "^1.0.0" } }, "is-installed-globally": { "version": "0.1.0", "bundled": true, "requires": { "global-dirs": "^0.1.0", "is-path-inside": "^1.0.0" } }, "is-npm": { "version": "1.0.0", "bundled": true }, "is-obj": { "version": "1.0.1", "bundled": true }, "is-path-inside": { "version": "1.0.1", "bundled": true, "requires": { "path-is-inside": "^1.0.1" } }, "is-redirect": { "version": "1.0.0", "bundled": true }, "is-retry-allowed": { "version": "1.1.0", "bundled": true }, "is-stream": { "version": "1.1.0", "bundled": true }, "is-typedarray": { "version": "1.0.0", "bundled": true }, "isarray": { "version": "1.0.0", "bundled": true }, "isexe": { "version": "2.0.0", "bundled": true }, "isstream": { "version": "0.1.2", "bundled": true }, "jsbn": { "version": "0.1.1", "bundled": true, "optional": true }, "json-parse-better-errors": { "version": "1.0.2", "bundled": true }, "json-schema": { "version": "0.2.3", "bundled": true }, "json-schema-traverse": { "version": "0.3.1", "bundled": true }, "json-stringify-safe": { "version": "5.0.1", "bundled": true }, "jsonparse": { "version": "1.3.1", "bundled": true }, "jsprim": { "version": "1.4.1", "bundled": true, "requires": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", "json-schema": "0.2.3", "verror": "1.10.0" } }, "latest-version": { "version": "3.1.0", "bundled": true, "requires": { "package-json": "^4.0.0" } }, "lazy-property": { "version": "1.0.0", "bundled": true }, "lcid": { "version": "1.0.0", "bundled": true, "requires": { "invert-kv": "^1.0.0" } }, "libcipm": { "version": "3.0.3", "bundled": true, "requires": { "bin-links": "^1.1.2", "bluebird": "^3.5.1", "figgy-pudding": "^3.5.1", "find-npm-prefix": "^1.0.2", "graceful-fs": "^4.1.11", "ini": "^1.3.5", "lock-verify": "^2.0.2", "mkdirp": "^0.5.1", "npm-lifecycle": "^2.0.3", "npm-logical-tree": "^1.2.1", "npm-package-arg": "^6.1.0", "pacote": "^9.1.0", "read-package-json": "^2.0.13", "rimraf": "^2.6.2", "worker-farm": "^1.6.0" } }, "libnpm": { "version": "2.0.1", "bundled": true, "requires": { "bin-links": "^1.1.2", "bluebird": "^3.5.3", "find-npm-prefix": "^1.0.2", "libnpmaccess": "^3.0.1", "libnpmconfig": "^1.2.1", "libnpmhook": "^5.0.2", "libnpmorg": "^1.0.0", "libnpmpublish": "^1.1.0", "libnpmsearch": "^2.0.0", "libnpmteam": "^1.0.1", "lock-verify": "^2.0.2", "npm-lifecycle": "^2.1.0", "npm-logical-tree": "^1.2.1", "npm-package-arg": "^6.1.0", "npm-profile": "^4.0.1", "npm-registry-fetch": "^3.8.0", "npmlog": "^4.1.2", "pacote": "^9.2.3", "read-package-json": "^2.0.13", "stringify-package": "^1.0.0" } }, "libnpmaccess": { "version": "3.0.1", "bundled": true, "requires": { "aproba": "^2.0.0", "get-stream": "^4.0.0", "npm-package-arg": "^6.1.0", "npm-registry-fetch": "^3.8.0" }, "dependencies": { "aproba": { "version": "2.0.0", "bundled": true } } }, "libnpmconfig": { "version": "1.2.1", "bundled": true, "requires": { "figgy-pudding": "^3.5.1", "find-up": "^3.0.0", "ini": "^1.3.5" }, "dependencies": { "find-up": { "version": "3.0.0", "bundled": true, "requires": { "locate-path": "^3.0.0" } }, "locate-path": { "version": "3.0.0", "bundled": true, "requires": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" } }, "p-limit": { "version": "2.1.0", "bundled": true, "requires": { "p-try": "^2.0.0" } }, "p-locate": { "version": "3.0.0", "bundled": true, "requires": { "p-limit": "^2.0.0" } }, "p-try": { "version": "2.0.0", "bundled": true } } }, "libnpmhook": { "version": "5.0.2", "bundled": true, "requires": { "aproba": "^2.0.0", "figgy-pudding": "^3.4.1", "get-stream": "^4.0.0", "npm-registry-fetch": "^3.8.0" } }, "libnpmorg": { "version": "1.0.0", "bundled": true, "requires": { "aproba": "^2.0.0", "figgy-pudding": "^3.4.1", "get-stream": "^4.0.0", "npm-registry-fetch": "^3.8.0" }, "dependencies": { "aproba": { "version": "2.0.0", "bundled": true } } }, "libnpmpublish": { "version": "1.1.1", "bundled": true, "requires": { "aproba": "^2.0.0", "figgy-pudding": "^3.5.1", "get-stream": "^4.0.0", "lodash.clonedeep": "^4.5.0", "normalize-package-data": "^2.4.0", "npm-package-arg": "^6.1.0", "npm-registry-fetch": "^3.8.0", "semver": "^5.5.1", "ssri": "^6.0.1" } }, "libnpmsearch": { "version": "2.0.0", "bundled": true, "requires": { "figgy-pudding": "^3.5.1", "get-stream": "^4.0.0", "npm-registry-fetch": "^3.8.0" } }, "libnpmteam": { "version": "1.0.1", "bundled": true, "requires": { "aproba": "^2.0.0", "figgy-pudding": "^3.4.1", "get-stream": "^4.0.0", "npm-registry-fetch": "^3.8.0" }, "dependencies": { "aproba": { "version": "2.0.0", "bundled": true } } }, "libnpx": { "version": "10.2.0", "bundled": true, "requires": { "dotenv": "^5.0.1", "npm-package-arg": "^6.0.0", "rimraf": "^2.6.2", "safe-buffer": "^5.1.0", "update-notifier": "^2.3.0", "which": "^1.3.0", "y18n": "^4.0.0", "yargs": "^11.0.0" } }, "locate-path": { "version": "2.0.0", "bundled": true, "requires": { "p-locate": "^2.0.0", "path-exists": "^3.0.0" } }, "lock-verify": { "version": "2.1.0", "bundled": true, "requires": { "npm-package-arg": "^6.1.0", "semver": "^5.4.1" } }, "lockfile": { "version": "1.0.4", "bundled": true, "requires": { "signal-exit": "^3.0.2" } }, "lodash._baseindexof": { "version": "3.1.0", "bundled": true }, "lodash._baseuniq": { "version": "4.6.0", "bundled": true, "requires": { "lodash._createset": "~4.0.0", "lodash._root": "~3.0.0" } }, "lodash._bindcallback": { "version": "3.0.1", "bundled": true }, "lodash._cacheindexof": { "version": "3.0.2", "bundled": true }, "lodash._createcache": { "version": "3.1.2", "bundled": true, "requires": { "lodash._getnative": "^3.0.0" } }, "lodash._createset": { "version": "4.0.3", "bundled": true }, "lodash._getnative": { "version": "3.9.1", "bundled": true }, "lodash._root": { "version": "3.0.1", "bundled": true }, "lodash.clonedeep": { "version": "4.5.0", "bundled": true }, "lodash.restparam": { "version": "3.6.1", "bundled": true }, "lodash.union": { "version": "4.6.0", "bundled": true }, "lodash.uniq": { "version": "4.5.0", "bundled": true }, "lodash.without": { "version": "4.4.0", "bundled": true }, "lowercase-keys": { "version": "1.0.1", "bundled": true }, "lru-cache": { "version": "4.1.5", "bundled": true, "requires": { "pseudomap": "^1.0.2", "yallist": "^2.1.2" } }, "make-dir": { "version": "1.3.0", "bundled": true, "requires": { "pify": "^3.0.0" } }, "make-fetch-happen": { "version": "4.0.1", "bundled": true, "requires": { "agentkeepalive": "^3.4.1", "cacache": "^11.0.1", "http-cache-semantics": "^3.8.1", "http-proxy-agent": "^2.1.0", "https-proxy-agent": "^2.2.1", "lru-cache": "^4.1.2", "mississippi": "^3.0.0", "node-fetch-npm": "^2.0.2", "promise-retry": "^1.1.1", "socks-proxy-agent": "^4.0.0", "ssri": "^6.0.0" } }, "meant": { "version": "1.0.1", "bundled": true }, "mem": { "version": "1.1.0", "bundled": true, "requires": { "mimic-fn": "^1.0.0" } }, "mime-db": { "version": "1.35.0", "bundled": true }, "mime-types": { "version": "2.1.19", "bundled": true, "requires": { "mime-db": "~1.35.0" } }, "mimic-fn": { "version": "1.2.0", "bundled": true }, "minimatch": { "version": "3.0.4", "bundled": true, "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { "version": "0.0.8", "bundled": true }, "minipass": { "version": "2.3.3", "bundled": true, "requires": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" }, "dependencies": { "yallist": { "version": "3.0.2", "bundled": true } } }, "minizlib": { "version": "1.1.1", "bundled": true, "requires": { "minipass": "^2.2.1" } }, "mississippi": { "version": "3.0.0", "bundled": true, "requires": { "concat-stream": "^1.5.0", "duplexify": "^3.4.2", "end-of-stream": "^1.1.0", "flush-write-stream": "^1.0.0", "from2": "^2.1.0", "parallel-transform": "^1.1.0", "pump": "^3.0.0", "pumpify": "^1.3.3", "stream-each": "^1.1.0", "through2": "^2.0.0" } }, "mkdirp": { "version": "0.5.1", "bundled": true, "requires": { "minimist": "0.0.8" } }, "move-concurrently": { "version": "1.0.1", "bundled": true, "requires": { "aproba": "^1.1.1", "copy-concurrently": "^1.0.0", "fs-write-stream-atomic": "^1.0.8", "mkdirp": "^0.5.1", "rimraf": "^2.5.4", "run-queue": "^1.0.3" }, "dependencies": { "aproba": { "version": "1.2.0", "bundled": true } } }, "ms": { "version": "2.1.1", "bundled": true }, "mute-stream": { "version": "0.0.7", "bundled": true }, "node-fetch-npm": { "version": "2.0.2", "bundled": true, "requires": { "encoding": "^0.1.11", "json-parse-better-errors": "^1.0.0", "safe-buffer": "^5.1.1" } }, "node-gyp": { "version": "3.8.0", "bundled": true, "requires": { "fstream": "^1.0.0", "glob": "^7.0.3", "graceful-fs": "^4.1.2", "mkdirp": "^0.5.0", "nopt": "2 || 3", "npmlog": "0 || 1 || 2 || 3 || 4", "osenv": "0", "request": "^2.87.0", "rimraf": "2", "semver": "~5.3.0", "tar": "^2.0.0", "which": "1" }, "dependencies": { "nopt": { "version": "3.0.6", "bundled": true, "requires": { "abbrev": "1" } }, "semver": { "version": "5.3.0", "bundled": true }, "tar": { "version": "2.2.1", "bundled": true, "requires": { "block-stream": "*", "fstream": "^1.0.2", "inherits": "2" } } } }, "nopt": { "version": "4.0.1", "bundled": true, "requires": { "abbrev": "1", "osenv": "^0.1.4" } }, "normalize-package-data": { "version": "2.5.0", "bundled": true, "requires": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" }, "dependencies": { "resolve": { "version": "1.10.0", "bundled": true, "requires": { "path-parse": "^1.0.6" } } } }, "npm-audit-report": { "version": "1.3.2", "bundled": true, "requires": { "cli-table3": "^0.5.0", "console-control-strings": "^1.1.0" } }, "npm-bundled": { "version": "1.0.6", "bundled": true }, "npm-cache-filename": { "version": "1.0.2", "bundled": true }, "npm-install-checks": { "version": "3.0.0", "bundled": true, "requires": { "semver": "^2.3.0 || 3.x || 4 || 5" } }, "npm-lifecycle": { "version": "2.1.0", "bundled": true, "requires": { "byline": "^5.0.0", "graceful-fs": "^4.1.11", "node-gyp": "^3.8.0", "resolve-from": "^4.0.0", "slide": "^1.1.6", "uid-number": "0.0.6", "umask": "^1.1.0", "which": "^1.3.1" } }, "npm-logical-tree": { "version": "1.2.1", "bundled": true }, "npm-package-arg": { "version": "6.1.0", "bundled": true, "requires": { "hosted-git-info": "^2.6.0", "osenv": "^0.1.5", "semver": "^5.5.0", "validate-npm-package-name": "^3.0.0" } }, "npm-packlist": { "version": "1.4.1", "bundled": true, "requires": { "ignore-walk": "^3.0.1", "npm-bundled": "^1.0.1" } }, "npm-pick-manifest": { "version": "2.2.3", "bundled": true, "requires": { "figgy-pudding": "^3.5.1", "npm-package-arg": "^6.0.0", "semver": "^5.4.1" } }, "npm-profile": { "version": "4.0.1", "bundled": true, "requires": { "aproba": "^1.1.2 || 2", "figgy-pudding": "^3.4.1", "npm-registry-fetch": "^3.8.0" } }, "npm-registry-fetch": { "version": "3.9.0", "bundled": true, "requires": { "JSONStream": "^1.3.4", "bluebird": "^3.5.1", "figgy-pudding": "^3.4.1", "lru-cache": "^4.1.3", "make-fetch-happen": "^4.0.1", "npm-package-arg": "^6.1.0" } }, "npm-run-path": { "version": "2.0.2", "bundled": true, "requires": { "path-key": "^2.0.0" } }, "npm-user-validate": { "version": "1.0.0", "bundled": true }, "npmlog": { "version": "4.1.2", "bundled": true, "requires": { "are-we-there-yet": "~1.1.2", "console-control-strings": "~1.1.0", "gauge": "~2.7.3", "set-blocking": "~2.0.0" } }, "number-is-nan": { "version": "1.0.1", "bundled": true }, "oauth-sign": { "version": "0.9.0", "bundled": true }, "object-assign": { "version": "4.1.1", "bundled": true }, "once": { "version": "1.4.0", "bundled": true, "requires": { "wrappy": "1" } }, "opener": { "version": "1.5.1", "bundled": true }, "os-homedir": { "version": "1.0.2", "bundled": true }, "os-locale": { "version": "2.1.0", "bundled": true, "requires": { "execa": "^0.7.0", "lcid": "^1.0.0", "mem": "^1.1.0" } }, "os-tmpdir": { "version": "1.0.2", "bundled": true }, "osenv": { "version": "0.1.5", "bundled": true, "requires": { "os-homedir": "^1.0.0", "os-tmpdir": "^1.0.0" } }, "p-finally": { "version": "1.0.0", "bundled": true }, "p-limit": { "version": "1.2.0", "bundled": true, "requires": { "p-try": "^1.0.0" } }, "p-locate": { "version": "2.0.0", "bundled": true, "requires": { "p-limit": "^1.1.0" } }, "p-try": { "version": "1.0.0", "bundled": true }, "package-json": { "version": "4.0.1", "bundled": true, "requires": { "got": "^6.7.1", "registry-auth-token": "^3.0.1", "registry-url": "^3.0.3", "semver": "^5.1.0" } }, "pacote": { "version": "9.5.0", "bundled": true, "requires": { "bluebird": "^3.5.3", "cacache": "^11.3.2", "figgy-pudding": "^3.5.1", "get-stream": "^4.1.0", "glob": "^7.1.3", "lru-cache": "^5.1.1", "make-fetch-happen": "^4.0.1", "minimatch": "^3.0.4", "minipass": "^2.3.5", "mississippi": "^3.0.0", "mkdirp": "^0.5.1", "normalize-package-data": "^2.4.0", "npm-package-arg": "^6.1.0", "npm-packlist": "^1.1.12", "npm-pick-manifest": "^2.2.3", "npm-registry-fetch": "^3.8.0", "osenv": "^0.1.5", "promise-inflight": "^1.0.1", "promise-retry": "^1.1.1", "protoduck": "^5.0.1", "rimraf": "^2.6.2", "safe-buffer": "^5.1.2", "semver": "^5.6.0", "ssri": "^6.0.1", "tar": "^4.4.8", "unique-filename": "^1.1.1", "which": "^1.3.1" }, "dependencies": { "lru-cache": { "version": "5.1.1", "bundled": true, "requires": { "yallist": "^3.0.2" } }, "minipass": { "version": "2.3.5", "bundled": true, "requires": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" } }, "yallist": { "version": "3.0.3", "bundled": true } } }, "parallel-transform": { "version": "1.1.0", "bundled": true, "requires": { "cyclist": "~0.2.2", "inherits": "^2.0.3", "readable-stream": "^2.1.5" }, "dependencies": { "readable-stream": { "version": "2.3.6", "bundled": true, "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", "bundled": true, "requires": { "safe-buffer": "~5.1.0" } } } }, "path-exists": { "version": "3.0.0", "bundled": true }, "path-is-absolute": { "version": "1.0.1", "bundled": true }, "path-is-inside": { "version": "1.0.2", "bundled": true }, "path-key": { "version": "2.0.1", "bundled": true }, "path-parse": { "version": "1.0.6", "bundled": true }, "performance-now": { "version": "2.1.0", "bundled": true }, "pify": { "version": "3.0.0", "bundled": true }, "prepend-http": { "version": "1.0.4", "bundled": true }, "process-nextick-args": { "version": "2.0.0", "bundled": true }, "promise-inflight": { "version": "1.0.1", "bundled": true }, "promise-retry": { "version": "1.1.1", "bundled": true, "requires": { "err-code": "^1.0.0", "retry": "^0.10.0" }, "dependencies": { "retry": { "version": "0.10.1", "bundled": true } } }, "promzard": { "version": "0.3.0", "bundled": true, "requires": { "read": "1" } }, "proto-list": { "version": "1.2.4", "bundled": true }, "protoduck": { "version": "5.0.1", "bundled": true, "requires": { "genfun": "^5.0.0" } }, "prr": { "version": "1.0.1", "bundled": true }, "pseudomap": { "version": "1.0.2", "bundled": true }, "psl": { "version": "1.1.29", "bundled": true }, "pump": { "version": "3.0.0", "bundled": true, "requires": { "end-of-stream": "^1.1.0", "once": "^1.3.1" } }, "pumpify": { "version": "1.5.1", "bundled": true, "requires": { "duplexify": "^3.6.0", "inherits": "^2.0.3", "pump": "^2.0.0" }, "dependencies": { "pump": { "version": "2.0.1", "bundled": true, "requires": { "end-of-stream": "^1.1.0", "once": "^1.3.1" } } } }, "punycode": { "version": "1.4.1", "bundled": true }, "qrcode-terminal": { "version": "0.12.0", "bundled": true }, "qs": { "version": "6.5.2", "bundled": true }, "query-string": { "version": "6.2.0", "bundled": true, "requires": { "decode-uri-component": "^0.2.0", "strict-uri-encode": "^2.0.0" } }, "qw": { "version": "1.0.1", "bundled": true }, "rc": { "version": "1.2.7", "bundled": true, "requires": { "deep-extend": "^0.5.1", "ini": "~1.3.0", "minimist": "^1.2.0", "strip-json-comments": "~2.0.1" }, "dependencies": { "minimist": { "version": "1.2.0", "bundled": true } } }, "read": { "version": "1.0.7", "bundled": true, "requires": { "mute-stream": "~0.0.4" } }, "read-cmd-shim": { "version": "1.0.1", "bundled": true, "requires": { "graceful-fs": "^4.1.2" } }, "read-installed": { "version": "4.0.3", "bundled": true, "requires": { "debuglog": "^1.0.1", "graceful-fs": "^4.1.2", "read-package-json": "^2.0.0", "readdir-scoped-modules": "^1.0.0", "semver": "2 || 3 || 4 || 5", "slide": "~1.1.3", "util-extend": "^1.0.1" } }, "read-package-json": { "version": "2.0.13", "bundled": true, "requires": { "glob": "^7.1.1", "graceful-fs": "^4.1.2", "json-parse-better-errors": "^1.0.1", "normalize-package-data": "^2.0.0", "slash": "^1.0.0" } }, "read-package-tree": { "version": "5.2.2", "bundled": true, "requires": { "debuglog": "^1.0.1", "dezalgo": "^1.0.0", "once": "^1.3.0", "read-package-json": "^2.0.0", "readdir-scoped-modules": "^1.0.0" } }, "readable-stream": { "version": "3.1.1", "bundled": true, "requires": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } }, "readdir-scoped-modules": { "version": "1.0.2", "bundled": true, "requires": { "debuglog": "^1.0.1", "dezalgo": "^1.0.0", "graceful-fs": "^4.1.2", "once": "^1.3.0" } }, "registry-auth-token": { "version": "3.3.2", "bundled": true, "requires": { "rc": "^1.1.6", "safe-buffer": "^5.0.1" } }, "registry-url": { "version": "3.1.0", "bundled": true, "requires": { "rc": "^1.0.1" } }, "request": { "version": "2.88.0", "bundled": true, "requires": { "aws-sign2": "~0.7.0", "aws4": "^1.8.0", "caseless": "~0.12.0", "combined-stream": "~1.0.6", "extend": "~3.0.2", "forever-agent": "~0.6.1", "form-data": "~2.3.2", "har-validator": "~5.1.0", "http-signature": "~1.2.0", "is-typedarray": "~1.0.0", "isstream": "~0.1.2", "json-stringify-safe": "~5.0.1", "mime-types": "~2.1.19", "oauth-sign": "~0.9.0", "performance-now": "^2.1.0", "qs": "~6.5.2", "safe-buffer": "^5.1.2", "tough-cookie": "~2.4.3", "tunnel-agent": "^0.6.0", "uuid": "^3.3.2" } }, "require-directory": { "version": "2.1.1", "bundled": true }, "require-main-filename": { "version": "1.0.1", "bundled": true }, "resolve-from": { "version": "4.0.0", "bundled": true }, "retry": { "version": "0.12.0", "bundled": true }, "rimraf": { "version": "2.6.3", "bundled": true, "requires": { "glob": "^7.1.3" } }, "run-queue": { "version": "1.0.3", "bundled": true, "requires": { "aproba": "^1.1.1" }, "dependencies": { "aproba": { "version": "1.2.0", "bundled": true } } }, "safe-buffer": { "version": "5.1.2", "bundled": true }, "safer-buffer": { "version": "2.1.2", "bundled": true }, "semver": { "version": "5.6.0", "bundled": true }, "semver-diff": { "version": "2.1.0", "bundled": true, "requires": { "semver": "^5.0.3" } }, "set-blocking": { "version": "2.0.0", "bundled": true }, "sha": { "version": "2.0.1", "bundled": true, "requires": { "graceful-fs": "^4.1.2", "readable-stream": "^2.0.2" }, "dependencies": { "readable-stream": { "version": "2.3.6", "bundled": true, "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", "bundled": true, "requires": { "safe-buffer": "~5.1.0" } } } }, "shebang-command": { "version": "1.2.0", "bundled": true, "requires": { "shebang-regex": "^1.0.0" } }, "shebang-regex": { "version": "1.0.0", "bundled": true }, "signal-exit": { "version": "3.0.2", "bundled": true }, "slash": { "version": "1.0.0", "bundled": true }, "slide": { "version": "1.1.6", "bundled": true }, "smart-buffer": { "version": "4.0.1", "bundled": true }, "socks": { "version": "2.2.0", "bundled": true, "requires": { "ip": "^1.1.5", "smart-buffer": "^4.0.1" } }, "socks-proxy-agent": { "version": "4.0.1", "bundled": true, "requires": { "agent-base": "~4.2.0", "socks": "~2.2.0" } }, "sorted-object": { "version": "2.0.1", "bundled": true }, "sorted-union-stream": { "version": "2.1.3", "bundled": true, "requires": { "from2": "^1.3.0", "stream-iterate": "^1.1.0" }, "dependencies": { "from2": { "version": "1.3.0", "bundled": true, "requires": { "inherits": "~2.0.1", "readable-stream": "~1.1.10" } }, "isarray": { "version": "0.0.1", "bundled": true }, "readable-stream": { "version": "1.1.14", "bundled": true, "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.1", "isarray": "0.0.1", "string_decoder": "~0.10.x" } }, "string_decoder": { "version": "0.10.31", "bundled": true } } }, "spdx-correct": { "version": "3.0.0", "bundled": true, "requires": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" } }, "spdx-exceptions": { "version": "2.1.0", "bundled": true }, "spdx-expression-parse": { "version": "3.0.0", "bundled": true, "requires": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, "spdx-license-ids": { "version": "3.0.3", "bundled": true }, "sshpk": { "version": "1.14.2", "bundled": true, "requires": { "asn1": "~0.2.3", "assert-plus": "^1.0.0", "bcrypt-pbkdf": "^1.0.0", "dashdash": "^1.12.0", "ecc-jsbn": "~0.1.1", "getpass": "^0.1.1", "jsbn": "~0.1.0", "safer-buffer": "^2.0.2", "tweetnacl": "~0.14.0" } }, "ssri": { "version": "6.0.1", "bundled": true, "requires": { "figgy-pudding": "^3.5.1" } }, "stream-each": { "version": "1.2.2", "bundled": true, "requires": { "end-of-stream": "^1.1.0", "stream-shift": "^1.0.0" } }, "stream-iterate": { "version": "1.2.0", "bundled": true, "requires": { "readable-stream": "^2.1.5", "stream-shift": "^1.0.0" }, "dependencies": { "readable-stream": { "version": "2.3.6", "bundled": true, "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", "bundled": true, "requires": { "safe-buffer": "~5.1.0" } } } }, "stream-shift": { "version": "1.0.0", "bundled": true }, "strict-uri-encode": { "version": "2.0.0", "bundled": true }, "string-width": { "version": "2.1.1", "bundled": true, "requires": { "is-fullwidth-code-point": "^2.0.0", "strip-ansi": "^4.0.0" }, "dependencies": { "ansi-regex": { "version": "3.0.0", "bundled": true }, "is-fullwidth-code-point": { "version": "2.0.0", "bundled": true }, "strip-ansi": { "version": "4.0.0", "bundled": true, "requires": { "ansi-regex": "^3.0.0" } } } }, "string_decoder": { "version": "1.2.0", "bundled": true, "requires": { "safe-buffer": "~5.1.0" } }, "stringify-package": { "version": "1.0.0", "bundled": true }, "strip-ansi": { "version": "3.0.1", "bundled": true, "requires": { "ansi-regex": "^2.0.0" } }, "strip-eof": { "version": "1.0.0", "bundled": true }, "strip-json-comments": { "version": "2.0.1", "bundled": true }, "supports-color": { "version": "5.4.0", "bundled": true, "requires": { "has-flag": "^3.0.0" } }, "tar": { "version": "4.4.8", "bundled": true, "requires": { "chownr": "^1.1.1", "fs-minipass": "^1.2.5", "minipass": "^2.3.4", "minizlib": "^1.1.1", "mkdirp": "^0.5.0", "safe-buffer": "^5.1.2", "yallist": "^3.0.2" }, "dependencies": { "chownr": { "version": "1.1.1", "bundled": true }, "minipass": { "version": "2.3.5", "bundled": true, "requires": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" } }, "yallist": { "version": "3.0.3", "bundled": true } } }, "term-size": { "version": "1.2.0", "bundled": true, "requires": { "execa": "^0.7.0" } }, "text-table": { "version": "0.2.0", "bundled": true }, "through": { "version": "2.3.8", "bundled": true }, "through2": { "version": "2.0.3", "bundled": true, "requires": { "readable-stream": "^2.1.5", "xtend": "~4.0.1" }, "dependencies": { "readable-stream": { "version": "2.3.6", "bundled": true, "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", "bundled": true, "requires": { "safe-buffer": "~5.1.0" } } } }, "timed-out": { "version": "4.0.1", "bundled": true }, "tiny-relative-date": { "version": "1.3.0", "bundled": true }, "tough-cookie": { "version": "2.4.3", "bundled": true, "requires": { "psl": "^1.1.24", "punycode": "^1.4.1" } }, "tunnel-agent": { "version": "0.6.0", "bundled": true, "requires": { "safe-buffer": "^5.0.1" } }, "tweetnacl": { "version": "0.14.5", "bundled": true, "optional": true }, "typedarray": { "version": "0.0.6", "bundled": true }, "uid-number": { "version": "0.0.6", "bundled": true }, "umask": { "version": "1.1.0", "bundled": true }, "unique-filename": { "version": "1.1.1", "bundled": true, "requires": { "unique-slug": "^2.0.0" } }, "unique-slug": { "version": "2.0.0", "bundled": true, "requires": { "imurmurhash": "^0.1.4" } }, "unique-string": { "version": "1.0.0", "bundled": true, "requires": { "crypto-random-string": "^1.0.0" } }, "unpipe": { "version": "1.0.0", "bundled": true }, "unzip-response": { "version": "2.0.1", "bundled": true }, "update-notifier": { "version": "2.5.0", "bundled": true, "requires": { "boxen": "^1.2.1", "chalk": "^2.0.1", "configstore": "^3.0.0", "import-lazy": "^2.1.0", "is-ci": "^1.0.10", "is-installed-globally": "^0.1.0", "is-npm": "^1.0.0", "latest-version": "^3.0.0", "semver-diff": "^2.0.0", "xdg-basedir": "^3.0.0" } }, "url-parse-lax": { "version": "1.0.0", "bundled": true, "requires": { "prepend-http": "^1.0.1" } }, "util-deprecate": { "version": "1.0.2", "bundled": true }, "util-extend": { "version": "1.0.3", "bundled": true }, "uuid": { "version": "3.3.2", "bundled": true }, "validate-npm-package-license": { "version": "3.0.4", "bundled": true, "requires": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" } }, "validate-npm-package-name": { "version": "3.0.0", "bundled": true, "requires": { "builtins": "^1.0.3" } }, "verror": { "version": "1.10.0", "bundled": true, "requires": { "assert-plus": "^1.0.0", "core-util-is": "1.0.2", "extsprintf": "^1.2.0" } }, "wcwidth": { "version": "1.0.1", "bundled": true, "requires": { "defaults": "^1.0.3" } }, "which": { "version": "1.3.1", "bundled": true, "requires": { "isexe": "^2.0.0" } }, "which-module": { "version": "2.0.0", "bundled": true }, "wide-align": { "version": "1.1.2", "bundled": true, "requires": { "string-width": "^1.0.2" }, "dependencies": { "string-width": { "version": "1.0.2", "bundled": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", "strip-ansi": "^3.0.0" } } } }, "widest-line": { "version": "2.0.0", "bundled": true, "requires": { "string-width": "^2.1.1" } }, "worker-farm": { "version": "1.6.0", "bundled": true, "requires": { "errno": "~0.1.7" } }, "wrap-ansi": { "version": "2.1.0", "bundled": true, "requires": { "string-width": "^1.0.1", "strip-ansi": "^3.0.1" }, "dependencies": { "string-width": { "version": "1.0.2", "bundled": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", "strip-ansi": "^3.0.0" } } } }, "wrappy": { "version": "1.0.2", "bundled": true }, "write-file-atomic": { "version": "2.4.2", "bundled": true, "requires": { "graceful-fs": "^4.1.11", "imurmurhash": "^0.1.4", "signal-exit": "^3.0.2" } }, "xdg-basedir": { "version": "3.0.0", "bundled": true }, "xtend": { "version": "4.0.1", "bundled": true }, "y18n": { "version": "4.0.0", "bundled": true }, "yallist": { "version": "2.1.2", "bundled": true }, "yargs": { "version": "11.0.0", "bundled": true, "requires": { "cliui": "^4.0.0", "decamelize": "^1.1.1", "find-up": "^2.1.0", "get-caller-file": "^1.0.1", "os-locale": "^2.0.0", "require-directory": "^2.1.1", "require-main-filename": "^1.0.1", "set-blocking": "^2.0.0", "string-width": "^2.0.0", "which-module": "^2.0.0", "y18n": "^3.2.1", "yargs-parser": "^9.0.2" }, "dependencies": { "y18n": { "version": "3.2.1", "bundled": true } } }, "yargs-parser": { "version": "9.0.2", "bundled": true, "requires": { "camelcase": "^4.1.0" } } } }, "object-inspect": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.3.0.tgz", "integrity": "sha512-OHHnLgLNXpM++GnJRyyhbr2bwl3pPVm4YvaraHrRvDt/N3r+s/gDVHciA7EJBTkijKXj61ssgSAikq1fb0IBRg==", "dev": true }, "object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true }, "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "dev": true, "requires": { "wrappy": "1" } }, "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", "dev": true }, "path-parse": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", "dev": true }, "prettier": { "version": "1.12.1", "dev": true }, "resolve": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.4.0.tgz", "integrity": "sha512-aW7sVKPufyHqOmyyLzg/J+8606v5nevBgaliIlV7nUpVMsDnoBGV/cbSLNjZAg9q0Cfd/+easKVKQ8vOu8fn1Q==", "dev": true, "requires": { "path-parse": "^1.0.5" } }, "resumer": { "version": "0.0.0", "resolved": "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz", "integrity": "sha1-8ej0YeQGS6Oegq883CqMiT0HZ1k=", "dev": true, "requires": { "through": "~2.3.4" } }, "string.prototype.trim": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz", "integrity": "sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo=", "dev": true, "requires": { "define-properties": "^1.1.2", "es-abstract": "^1.5.0", "function-bind": "^1.0.2" } }, "tape": { "version": "4.8.0", "dev": true, "requires": { "deep-equal": "~1.0.1", "defined": "~1.0.0", "for-each": "~0.3.2", "function-bind": "~1.1.0", "glob": "~7.1.2", "has": "~1.0.1", "inherits": "~2.0.3", "minimist": "~1.2.0", "object-inspect": "~1.3.0", "resolve": "~1.4.0", "resumer": "~0.0.0", "string.prototype.trim": "~1.1.2", "through": "~2.3.8" } }, "through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", "dev": true }, "tslib": { "version": "1.9.0" }, "typescript": { "version": "2.8.1", "dev": true }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", "dev": true } } } chrome-trace-event-1.0.2/package.json000066400000000000000000000015051347262636300175050ustar00rootroot00000000000000{ "name": "chrome-trace-event", "description": "A library to create a trace of your node app per Google's Trace Event format.", "license": "MIT", "version": "1.0.2", "author": "Trent Mick, Sam Saccone", "keywords": [ "trace-event", "trace", "event", "trace-viewer", "google" ], "repository": { "type": "git", "url": "github.com:samccone/chrome-trace-event" }, "main": "./dist/trace-event.js", "typings": "./dist/trace-event.d.ts", "dependencies": { "tslib": "^1.9.0" }, "devDependencies": { "@types/node": "^9.6.5", "prettier": "^1.12.1", "tape": "4.8.0", "typescript": "^2.8.1" }, "engines": { "node": ">=6.0" }, "scripts": { "build": "tsc", "check_format": "prettier -l lib/** test/** examples/**", "test": "tape test/*.test.js" } } chrome-trace-event-1.0.2/test/000077500000000000000000000000001347262636300161755ustar00rootroot00000000000000chrome-trace-event-1.0.2/test/basics.test.js000066400000000000000000000003371347262636300207600ustar00rootroot00000000000000/* * Catch all test file for trace-event. */ var test = require("tape"); var trace_event = require("../dist/trace-event"); // --- Tests test("exports", function(t) { t.ok(new trace_event.Tracer(), ""); t.end(); }); chrome-trace-event-1.0.2/tsconfig.json000066400000000000000000000011431347262636300177240ustar00rootroot00000000000000{ "compilerOptions": { "target": "es5", "module": "commonjs", "lib": [ "es2015" ], "declaration": true, "sourceMap": true, "outDir": "./dist", "importHelpers": true, "strict": true, "noImplicitAny": true, "strictNullChecks": true, "strictFunctionTypes": true, "strictPropertyInitialization": true, "noImplicitThis": true, "alwaysStrict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, "types": [ "node" ], "esModuleInterop": true } }chrome-trace-event-1.0.2/yarn.lock000066400000000000000000000161731347262636300170510ustar00rootroot00000000000000# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. # yarn lockfile v1 "@types/node@^9.6.5": version "9.6.5" resolved "https://registry.yarnpkg.com/@types/node/-/node-9.6.5.tgz#ee700810fdf49ac1c399fc5980b7559b3e5a381d" balanced-match@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" brace-expansion@^1.1.7: version "1.1.8" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" dependencies: balanced-match "^1.0.0" concat-map "0.0.1" concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" deep-equal@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" define-properties@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" dependencies: foreach "^2.0.5" object-keys "^1.0.8" defined@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" es-abstract@^1.5.0: version "1.10.0" resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864" dependencies: es-to-primitive "^1.1.1" function-bind "^1.1.1" has "^1.0.1" is-callable "^1.1.3" is-regex "^1.0.4" es-to-primitive@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" dependencies: is-callable "^1.1.1" is-date-object "^1.0.1" is-symbol "^1.0.1" for-each@~0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.2.tgz#2c40450b9348e97f281322593ba96704b9abd4d4" dependencies: is-function "~1.0.0" foreach@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" function-bind@^1.0.2, function-bind@^1.1.1, function-bind@~1.1.0: version "1.1.1" resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" glob@~7.1.2: version "7.1.2" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" dependencies: fs.realpath "^1.0.0" inflight "^1.0.4" inherits "2" minimatch "^3.0.4" once "^1.3.0" path-is-absolute "^1.0.0" has@^1.0.1, has@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" dependencies: function-bind "^1.0.2" inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" dependencies: once "^1.3.0" wrappy "1" inherits@2, inherits@~2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" is-callable@^1.1.1, is-callable@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" is-date-object@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" is-function@~1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5" is-regex@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" dependencies: has "^1.0.1" is-symbol@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" minimatch@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" dependencies: brace-expansion "^1.1.7" minimist@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" object-inspect@~1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.3.0.tgz#5b1eb8e6742e2ee83342a637034d844928ba2f6d" object-keys@^1.0.8: version "1.0.11" resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" once@^1.3.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" dependencies: wrappy "1" path-is-absolute@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" path-parse@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" prettier@^1.12.1: version "1.12.1" resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.12.1.tgz#c1ad20e803e7749faf905a409d2367e06bbe7325" resolve@~1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" dependencies: path-parse "^1.0.5" resumer@~0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759" dependencies: through "~2.3.4" string.prototype.trim@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" dependencies: define-properties "^1.1.2" es-abstract "^1.5.0" function-bind "^1.0.2" tape@4.8.0: version "4.8.0" resolved "https://registry.yarnpkg.com/tape/-/tape-4.8.0.tgz#f6a9fec41cc50a1de50fa33603ab580991f6068e" dependencies: deep-equal "~1.0.1" defined "~1.0.0" for-each "~0.3.2" function-bind "~1.1.0" glob "~7.1.2" has "~1.0.1" inherits "~2.0.3" minimist "~1.2.0" object-inspect "~1.3.0" resolve "~1.4.0" resumer "~0.0.0" string.prototype.trim "~1.1.2" through "~2.3.8" through@~2.3.4, through@~2.3.8: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" tslib@^1.9.0: version "1.9.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.0.tgz#e37a86fda8cbbaf23a057f473c9f4dc64e5fc2e8" typescript@^2.8.1: version "2.8.1" resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.8.1.tgz#6160e4f8f195d5ba81d4876f9c0cc1fbc0820624" wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"