diff --git a/.travis.yml b/.travis.yml
index d48dcb4..71d9c2d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,7 +2,6 @@ language: node_js
node_js:
- "6"
- "6.11"
- - "7"
- "8"
- "10"
cache: yarn
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..73931f4
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,75 @@
+# Contributing
+
+## How to test the basic functions of gtt
+
+Create a new project on GitLab if you haven't done so already and write down the project path. e.g. `kriskbx/example-project`. To test groups and subgroups, create a new group with at least one subgroup. Add a new project to both the parent group (e.g. `example-group`) and the subgroup (e.g. `example-group/example-subgroup`) and write down the paths of all the projects and groups. Create at least two issues (write down their id e.g. `42`, `43`) and one merge request (e.g. `13`) in all projects. Or just use our public group over here: https://gitlab.com/gtt
+
+Then run the following basic commands and check that they work as expected:
+
+```
+# Test config command
+gtt config
+
+# Test basic time tracking
+gtt start "kriskbx/example-project" 42
+gtt stop
+gtt log
+
+# Test cancelling
+gtt start "kriskbx/example-project" 42
+gtt cancel
+gtt log
+
+# Test merge request
+gtt start --type=merge_request "kriskbx/example-project" 13
+gtt stop
+gtt log
+
+# Test issue creation
+gtt create "krisbxkbx/example-project" "New Issue"
+gtt stop
+gtt log
+
+# Test editing
+gtt edit
+
+# Test deletion
+gtt start "kriskbx/example-project" 42
+gtt stop
+gtt delete
+
+# Test sync, check out issues on GitLab if changes are synced correctly
+gtt sync
+
+# Test basic report
+gtt report "kriskbx/example-project"
+
+# Test report for a single issue and multiple issues
+gtt report "kriskbx/example-project" 42
+gtt report "kriskbx/example-project" 42 43
+
+# Test report for a group
+gtt report --type=group "example-group"
+gtt report --type=group --subgroups "example-group"
+
+# Test combined reports
+gtt report "kriskbx/example-project" "example-group/example-project"
+
+# Test outputs
+gtt report --output=table "kriskbx/example-project"
+gtt report --output=markdown "kriskbx/example-project"
+gtt report --output=csv "kriskbx/example-project"
+gtt report --output=pdf --file=test.pdf "kriskbx/example-project"
+gtt report --output=xlsx --file=test.xlsx "kriskbx/example-project"
+
+# Test timeframes (adjust the values so it includes/excludes your issues)
+gtt report --from="2020-06-02" --to="2020-06-03" "kriskbx/example-project"
+
+# Test filtering (you might need to add milestones, labels and additional stuff to properly test this)
+gtt report --closed "kriskbx/example-project"
+gtt report --user=username "kriskbx/example-project"
+gtt report --milestone=milestone_name "kriskbx/example-project"
+gtt report --include_by_labels=critical "kriskbx/example-project"
+gtt report --exclude_by_labels=ignore "kriskbx/example-project"
+gtt report --query=issues "kriskbx/example-project"
+```
diff --git a/Dockerfile b/Dockerfile
index 2d4cfc0..2d9509f 100755
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,9 +1,12 @@
FROM node:8.2.1-alpine
-ENV GTT_VERSION 1.7.29
+ENV GTT_VERSION 1.7.39
+ENV EDITOR vi
+
+WORKDIR /pwd
RUN yarn global add --prefix /usr/local "gitlab-time-tracker@$GTT_VERSION"
-VOLUME ["/root"]
+VOLUME ["/root", "/pwd"]
ENTRYPOINT ["gtt"]
CMD ["--help"]
diff --git a/documentation.md b/documentation.md
index 448bae2..41fe224 100644
--- a/documentation.md
+++ b/documentation.md
@@ -27,22 +27,24 @@
## installation
-Install the gtt command line interface using yarn:
+Install the gtt command line interface using yarn:
```shell
yarn global add gitlab-time-tracker --prefix /usr/local
```
+... or download a compiled binary from [here](https://github.com/kriskbx/gitlab-time-tracker/releases) and put it into your `PATH`.
+
Run the config command to create a config file and open it in your default editor.
In linux terminal, you must set your preferred editor in the environment. For example, use `export EDITOR=vim` to edit the files with vim (put this in `.bashrc` or similar to have it always configured).
-If nothing happens, open the file manually: `~/.gtt/config.yml` - on Windows: `C:\Users\YourUserName\.gtt\config.yml`
+If nothing happens, open the file manually: `~/.local/share/.gtt` - on Windows: `C:\Users\YourUserName\.gtt\config.yml`
```shell
gtt config
```
Add your GitLab API url and your [GitLab API personal token](https://gitlab.com/profile/personal_access_tokens)
-to the config file and save it afterwards:
+to the config file and save it afterwards. **You need to activate the `api` scope when creating your access token.**
```yaml
url: https://gitlab.com/api/v4/
@@ -68,12 +70,13 @@ you can use the official [Docker image](https://hub.docker.com/r/kriskbx/gitlab-
docker run \
--rm -it \
-v ~:/root \
+ -v $(pwd):/pwd \
kriskbx/gitlab-time-tracker \
--help
```
`--rm` removes the container after running, `-it` makes it interactive, `-v ~:/root` mounts your home directory to the
-home directory inside the container. If you want to store the config in another place, mount another directory:
+home directory inside the container, `-v $(pwd):/pwd` mounts current directory inside the container to gtt be able to read local config. If you want to store the config in another place, mount another directory:
```shell
@@ -99,7 +102,7 @@ docker run \
I highly recommend creating an alias and adding it to your `bashrc`:
```shell
-echo "alias gtt='docker run --rm -it -v ~:/root kriskbx/gitlab-time-tracker'" >>~/.bashrc
+echo "alias gtt='docker run --rm -it -v ~:/root -v $(pwd):/pwd kriskbx/gitlab-time-tracker'" >>~/.bashrc
```
Now you can simply write `gtt` instead of the bulky Docker command before. Try it out: `gtt --help`
diff --git a/package.json b/package.json
index af2b296..9496a9c 100755
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "gitlab-time-tracker",
- "version": "1.7.29",
+ "version": "1.7.39",
"description": "A command line interface for GitLabs time tracking feature.",
"bugs": {
"url": "https://github.com/kriskbx/gitlab-time-tracker/issues"
@@ -14,7 +14,7 @@
"test": "NODE_ENV=test mocha 'spec/**/*.spec.js'",
"cover": "istanbul cover _mocha $(find ./spec -name \"*.spec.js\")",
"coveralls": "yarn run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
- "build": "pkg -o out/gtt -t node10-linux-x64,node10-macos-x64,node10-win-x64 src/gtt.js"
+ "build": "pkg src/gtt.js -o out/gtt -c package.json"
},
"bin": {
"gtt": "src/gtt.js"
@@ -22,15 +22,24 @@
"engines": {
"node": ">=6.11"
},
+ "pkg": {
+ "scripts": "src/**/*.js",
+ "targets": [
+ "node10-linux-x64",
+ "node10-macos-x64",
+ "node10-win-x64"
+ ]
+ },
"author": "kriskbx",
"license": "GPL-2.0",
"dependencies": {
+ "app-module-path": "^2.2.0",
"async": "^2.6.1",
"camelcase": "^4.1.0",
"cli-cursor": "^2.1.0",
"cli-table": "^0.3.1",
"colors": "^1.3.1",
- "commander": "^2.16.0",
+ "commander": "kriskbx/commander.js",
"csv-string": "^2.3.2",
"find-in-files": "^0.4.0",
"hash-sum": "^1.0.2",
@@ -46,8 +55,11 @@
"read-yaml": "^1.1.0",
"request": "^2.87.0",
"request-promise-native": "^1.0.4",
+ "shelljs": "^0.8.3",
"tempfile": "^2.0.0",
+ "throttled-queue": "^1.0.7",
"underscore": "^1.9.1",
+ "xdg-basedir": "^3.0.0",
"xlsx": "^0.13.5"
},
"devDependencies": {
diff --git a/readme.md b/readme.md
index f41da8d..bc99b29 100755
--- a/readme.md
+++ b/readme.md
@@ -8,6 +8,10 @@
+## ⚠️ Attention
+
+This repository is not maintained anymore. If you still want to use gtt and get regular updates, I recommend checking out this fork: https://github.com/ndu2/gitlab-time-tracker
+
## introduction
gtt is a fully featured command line interface for GitLab's time tracking feature. It monitors the time you spent on an issue or merge request locally and syncs it to GitLab. It also allows you to create reports in various formats from time tracking data stored on GitLab. **Looking for a graphical user interface? Check out the [gtt taskbar/menubar app](https://github.com/kriskbx/gitlab-time-tracker-taskbar) for Linux, Mac & Windows!**
diff --git a/src/gtt-report.js b/src/gtt-report.js
index fcbb76b..fac46da 100755
--- a/src/gtt-report.js
+++ b/src/gtt-report.js
@@ -29,27 +29,31 @@ function collect(val, arr) {
// set options
program
.arguments('[project] [ids]')
+ .option('-e --type ', 'specify the query type: project, user, group')
+ .option('--subgroups', 'include sub groups')
+ .option('--url ', 'URL to GitLabs API')
+ .option('--token ', 'API access token')
+ .option('-p --proxy ', 'use a proxy server with the given url')
+ .option('--insecure', 'don\'t check certificates')
.option('-f --from ', 'query times that are equal or greater than the given date')
.option('-t --to ', 'query times that are equal or smaller than the given date')
.option('--today', 'ignores --from and --to and queries entries for today')
.option('--this_week', 'ignores --from and --to and queries entries for this week')
.option('--this_month', 'ignores --from and --to and queries entries for this month')
.option('-c --closed', 'include closed issues')
- .option('-u --user ', 'only query times from the given user')
.option('-m --milestone ', 'include issues from the given milestone')
+ .option('--hours_per_day ', 'hours per day for human readable time formats')
+ .option('-u --user ', 'only query times from the given user')
.option('-q --query ', 'query the given data types: issues, merge_requests', collect, null)
- .option('-e --type ', 'specify the query type: project, user, group')
.option('-r --report ', 'include in the report: stats, issues, merge_requests, records', collect, null)
.option('-o --output ', 'use the given output')
.option('-l --file ', 'save report to the given file')
- .option('--subgroups', 'include sub groups')
.option('--include_by_labels ', 'only include issues that have the given labels', collect, null)
.option('--exclude_by_labels ', 'exclude issues that have the given labels', collect, null)
.option('--include_labels ', 'only include the given labels in the report', collect, null)
.option('--exclude_labels ', 'exclude the given labels in the report', collect, null)
.option('--date_format ', 'use the given date format in the report', collect, null)
.option('--time_format ', 'use the given time format in the report')
- .option('--hours_per_day ', 'hours per day for human readable time formats')
.option('--no_headlines', 'hide headlines in the report')
.option('--no_warnings', 'hide warnings in the report')
.option('--record_columns ', 'include the given columns in the record part of the report', collect, null)
@@ -59,7 +63,6 @@ program
.option('--quiet', 'only output report')
.option('--verbose', 'show verbose output')
.option('--show_without_times', 'show issues/merge requests without time records')
- .option('-p --proxy ', 'use a proxy server with the given url')
.option('--from_dump ', 'instead of querying gitlab, use data from the given dump file')
.parse(process.argv);
@@ -87,6 +90,9 @@ if (program.output === "dump") {
// overwrite config with args and opts
config
+ .set('url', program.url)
+ .set('token', program.token)
+ .set('insecure', program.insecure)
.set('project', cli.project())
.set('iids', cli.iids())
.set('from', program.from)
@@ -346,4 +352,4 @@ new Promise(resolve => {
.then(() => Cli.mark())
// time for a beer
- .then(() => Cli.done());
\ No newline at end of file
+ .then(() => Cli.done());
diff --git a/src/gtt-sync.js b/src/gtt-sync.js
index f1daae5..0c459c4 100755
--- a/src/gtt-sync.js
+++ b/src/gtt-sync.js
@@ -8,12 +8,18 @@ const Owner = require('./models/owner');
program
.option('-p --proxy ', 'use a proxy server with the given url')
+ .option('--url ', 'URL to GitLabs API')
+ .option('--token ', 'API access token')
+ .option('--insecure', 'don\'t check certificates')
.option('--verbose', 'show verbose output')
.parse(process.argv);
Cli.verbose = program.verbose;
let config = new Config(process.cwd())
+ .set('url', program.url)
+ .set('token', program.token)
+ .set('insecure', program.insecure)
.set('proxy', program.proxy);
tasks = new Tasks(config),
owner = new Owner(config);
diff --git a/src/gtt.js b/src/gtt.js
index 8624267..387c105 100755
--- a/src/gtt.js
+++ b/src/gtt.js
@@ -1,6 +1,7 @@
#!/usr/bin/env node
+require('app-module-path').addPath(__dirname);
-const version = '1.7.29';
+const version = require('../package.json').version;
const program = require('commander');
program
diff --git a/src/include/file-config.js b/src/include/file-config.js
index dd09dcb..bb60408 100755
--- a/src/include/file-config.js
+++ b/src/include/file-config.js
@@ -1,6 +1,8 @@
const fs = require('fs');
+const shell = require('shelljs');
const path = require('path');
const os = require("os");
+const xdgBaseDir = require('xdg-basedir');
const config = require('./config');
const yaml = require('read-yaml');
const hash = require('hash-sum');
@@ -22,6 +24,7 @@ class fileConfig extends config {
this.data = Object.assign(this.data, this.localExists() ? this.parseLocal() : this.parseGlobal());
this._dump = {};
this.cache = {
+ delete: this._cacheDelete,
get: this._cacheGet,
set: this._cacheSet,
dir: this.cacheDir
@@ -84,9 +87,15 @@ class fileConfig extends config {
}
assertGlobalConfig() {
- if (!fs.existsSync(this.globalDir)) fs.mkdirSync(this.globalDir, '0750', true);
- if (!fs.existsSync(this.frameDir)) fs.mkdirSync(this.frameDir, '0750', true);
- if (!fs.existsSync(this.cacheDir)) fs.mkdirSync(this.cacheDir, '0750', true);
+ if(!fs.existsSync(this.globalDir) && fs.existsSync(this.oldGlobalDir)) {
+ fs.renameSync(this.oldGlobalDir, this.globalDir);
+ }
+
+
+
+ if (!fs.existsSync(this.globalDir)) shell.mkdir('-p', this.globalDir);
+ if (!fs.existsSync(this.frameDir)) shell.mkdir('-p', this.frameDir);
+ if (!fs.existsSync(this.cacheDir)) shell.mkdir('-p', this.cacheDir);
if (!fs.existsSync(this.global)) fs.appendFileSync(this.global, '');
}
@@ -94,6 +103,13 @@ class fileConfig extends config {
if (!this.localExists()) fs.appendFileSync(this.local, '');
}
+ _cacheDelete(key) {
+ let file = Fs.join(this.dir, hash(key));
+ if (!fs.existsSync(file)) return false;
+
+ return fs.unlinkSync(file);
+ }
+
_cacheGet(key) {
let file = Fs.join(this.dir, hash(key));
if (!fs.existsSync(file)) return false;
@@ -114,10 +130,14 @@ class fileConfig extends config {
return '.gtt.yml';
}
- get globalDir() {
+ get oldGlobalDir() {
return Fs.join(process.env[(process.platform == 'win32') ? 'USERPROFILE' : 'HOME'], '.gtt');
}
+ get globalDir() {
+ return Fs.join(xdgBaseDir.data, '.gtt');
+ }
+
get frameDir() {
return Fs.join(this.globalDir, 'frames');
}
diff --git a/src/models/base.js b/src/models/base.js
index a7ca006..754aac5 100755
--- a/src/models/base.js
+++ b/src/models/base.js
@@ -2,6 +2,7 @@ const request = require('request-promise-native');
const url = require('url');
const async = require('async');
const crypto = require('crypto');
+const throttle = require('throttled-queue')(10, 1000);
/**
* base model
@@ -20,7 +21,7 @@ class base {
this._perPage = this.config ? this.config.get('_perPage') : 100;
this._parallel = this.config ? this.config.get('_parallel') : 4;
this._proxy = this.config && this.config.get('proxy') ? this.config.get('proxy') : undefined;
- this._insecure = this.config && this.config.get('unsecure') ? this.config.get('unsecure') : false;
+ this._insecure = this.config && this.config.get('insecure') ? this.config.get('insecure') : false;
}
/**
@@ -35,7 +36,7 @@ class base {
data.private_token = this.token;
- return new Promise((resolve, reject) => {
+ return new Promise((resolve, reject) => throttle(() => {
request.post(`${this.url}${path}`, {
json: true,
body: data,
@@ -49,7 +50,7 @@ class base {
if (this.config.get('_createDump')) this.setDump(response, key);
resolve(response);
}).catch(e => reject(e));
- });
+ }));
}
/**
@@ -66,7 +67,7 @@ class base {
path += (path.includes('?') ? '&' : '?') + `private_token=${this.token}`;
path += `&page=${page}&per_page=${perPage}`;
- return new Promise((resolve, reject) => {
+ return new Promise((resolve, reject) => throttle(() => {
request(`${this.url}${path}`, {
json: true,
insecure: this._insecure,
@@ -79,7 +80,7 @@ class base {
if (this.config.get('_createDump')) this.setDump(response, key);
resolve(response);
}).catch(e => reject(e));
- });
+ }));
}
/**
@@ -190,4 +191,4 @@ class base {
}
}
-module.exports = base;
\ No newline at end of file
+module.exports = base;
diff --git a/src/models/hasTimes.js b/src/models/hasTimes.js
index 416e77c..87cd1fe 100755
--- a/src/models/hasTimes.js
+++ b/src/models/hasTimes.js
@@ -82,8 +82,9 @@ class hasTimes extends Base {
if(subMatch && subMatch[2]) created = moment(subMatch[2]);
// create a time string and a time object
- let timeString = match ? match[1] : (subMatch ? `-${subMatch[1]}` : `-${Time.toHumanReadable(timeSpent, this.config.get('hoursPerDay'))}`);
- let time = new Time(timeString, created, note, this, this.config);
+ let timeString = match ? match[1] : (subMatch ? `-${subMatch[1]}` : `-${Time.toHumanReadable(timeSpent)}`);
+ let time = new Time(null, created, note, this, this.config);
+ time.seconds = Time.parse(timeString, 8, 5, 4);
// add to total time spent
totalTimeSpent += time.seconds;
@@ -142,4 +143,4 @@ class hasTimes extends Base {
}
}
-module.exports = hasTimes;
\ No newline at end of file
+module.exports = hasTimes;
diff --git a/src/models/issue.js b/src/models/issue.js
index d756505..adeed56 100755
--- a/src/models/issue.js
+++ b/src/models/issue.js
@@ -71,7 +71,7 @@ class issue extends hasTimes {
}
get closed() {
- return !!this.data.closed;
+ return this.data.state === 'closed';
}
get updated_at() {
@@ -111,4 +111,4 @@ class issue extends hasTimes {
}
}
-module.exports = issue;
\ No newline at end of file
+module.exports = issue;
diff --git a/src/models/time.js b/src/models/time.js
index 494dc5c..abb0ae2 100755
--- a/src/models/time.js
+++ b/src/models/time.js
@@ -29,6 +29,11 @@ class time {
this._date = date;
this.parent = parent;
this.config = config;
+
+ if(!timeString) {
+ return;
+ }
+
this.seconds = time.parse(timeString, this._hoursPerDay, this._daysPerWeek, this._weeksPerMonth);
}
diff --git a/yarn.lock b/yarn.lock
index 2acf365..8dfdeda 100755
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,9 +2,9 @@
# yarn lockfile v1
-"@babel/parser@7.0.0-beta.51":
- version "7.0.0-beta.51"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.0.0-beta.51.tgz#27cec2df409df60af58270ed8f6aa55409ea86f6"
+"@babel/parser@7.2.3":
+ version "7.2.3"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.2.3.tgz#32f5df65744b70888d17872ec106b02434ba1489"
"@mrmlnc/readdir-enhanced@^2.2.1":
version "2.2.1"
@@ -13,9 +13,9 @@
call-me-maybe "^1.0.1"
glob-to-regexp "^0.3.0"
-"@nodelib/fs.stat@^1.0.1":
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.2.tgz#54c5a964462be3d4d78af631363c18d6fa91ac26"
+"@nodelib/fs.stat@^1.1.2":
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b"
"@sinonjs/formatio@^2.0.0":
version "2.0.0"
@@ -47,6 +47,15 @@ ajv@^5.1.0:
fast-json-stable-stringify "^2.0.0"
json-schema-traverse "^0.3.0"
+ajv@^6.5.5:
+ version "6.7.0"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.7.0.tgz#e3ce7bb372d6577bb1839f1dfdfcbf5ad2948d96"
+ dependencies:
+ fast-deep-equal "^2.0.1"
+ fast-json-stable-stringify "^2.0.0"
+ json-schema-traverse "^0.4.1"
+ uri-js "^4.2.2"
+
align-text@^0.1.1, align-text@^0.1.3:
version "0.1.4"
resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
@@ -73,6 +82,10 @@ ansi-styles@^3.2.1:
dependencies:
color-convert "^1.9.0"
+app-module-path@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/app-module-path/-/app-module-path-2.2.0.tgz#641aa55dfb7d6a6f0a8141c4b9c0aa50b6c24dd5"
+
argparse@^1.0.7:
version "1.0.10"
resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
@@ -117,8 +130,10 @@ arrify@^1.0.1:
resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
asn1@~0.2.3:
- version "0.2.3"
- resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
+ version "0.2.4"
+ resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136"
+ dependencies:
+ safer-buffer "~2.1.0"
assert-plus@1.0.0, assert-plus@^1.0.0:
version "1.0.0"
@@ -174,11 +189,15 @@ aws-sign2@~0.7.0:
version "0.7.0"
resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
-aws4@^1.2.1, aws4@^1.6.0:
+aws4@^1.2.1:
version "1.7.0"
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.7.0.tgz#d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289"
-babel-runtime@6.26.0:
+aws4@^1.6.0, aws4@^1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f"
+
+babel-runtime@6.26.0, babel-runtime@~6.26.0:
version "6.26.0"
resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
dependencies:
@@ -202,8 +221,8 @@ base@^0.11.1:
pascalcase "^0.1.1"
bcrypt-pbkdf@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"
dependencies:
tweetnacl "^0.14.3"
@@ -270,7 +289,7 @@ build@^0.1.4:
winston "*"
wrench "1.3.x"
-byline@5.0.0:
+byline@~5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/byline/-/byline-5.0.0.tgz#741c5216468eadc457b03410118ad77de8c1ddb1"
@@ -333,9 +352,9 @@ chai@^4.1.2:
pathval "^1.0.0"
type-detect "^4.0.0"
-chalk@2.4.1:
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e"
+chalk@2.4.2, chalk@~2.4.1:
+ version "2.4.2"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
dependencies:
ansi-styles "^3.2.1"
escape-string-regexp "^1.0.5"
@@ -424,12 +443,18 @@ colors@^1.3.1:
version "1.3.1"
resolved "https://registry.yarnpkg.com/colors/-/colors-1.3.1.tgz#4accdb89cf2cabc7f982771925e9468784f32f3d"
-combined-stream@1.0.6, combined-stream@^1.0.5, combined-stream@~1.0.5:
+combined-stream@^1.0.5:
version "1.0.6"
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818"
dependencies:
delayed-stream "~1.0.0"
+combined-stream@^1.0.6, combined-stream@~1.0.5, combined-stream@~1.0.6:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.7.tgz#2d1d24317afb8abe95d6d2c0b07b57813539d828"
+ dependencies:
+ delayed-stream "~1.0.0"
+
commander@2.15.1, commander@^2.2.0, commander@^2.9.0, commander@~2.15.1:
version "2.15.1"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f"
@@ -438,9 +463,9 @@ commander@^2.14.1:
version "2.17.1"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf"
-commander@^2.16.0:
- version "2.16.0"
- resolved "https://registry.yarnpkg.com/commander/-/commander-2.16.0.tgz#f16390593996ceb4f3eeb020b31d78528f7f8a50"
+commander@kriskbx/commander.js:
+ version "2.19.0"
+ resolved "https://codeload.github.com/kriskbx/commander.js/tar.gz/2275da95973c27e40e13a4195768947aa39672d0"
commander@~2.14.1:
version "2.14.1"
@@ -476,8 +501,8 @@ copy-descriptor@^0.1.0:
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
core-js@^2.4.0:
- version "2.5.7"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e"
+ version "2.6.3"
+ resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.3.tgz#4b70938bdffdaf64931e66e2db158f0892289c49"
core-util-is@1.0.2, core-util-is@~1.0.0:
version "1.0.2"
@@ -507,8 +532,8 @@ cryptiles@2.x.x:
boom "2.x.x"
cryptiles@3.x.x:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe"
+ version "3.1.4"
+ resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.4.tgz#769a68c95612b56faadfcebf57ac86479cbe8322"
dependencies:
boom "5.x.x"
@@ -591,7 +616,7 @@ diff@3.5.0, diff@^3.1.0:
version "3.5.0"
resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12"
-dir-glob@^2.0.0:
+dir-glob@2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034"
dependencies:
@@ -603,10 +628,11 @@ duplexer@^0.1.1:
resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1"
ecc-jsbn@~0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9"
dependencies:
jsbn "~0.1.0"
+ safer-buffer "^2.1.0"
es6-promise@^4.0.3:
version "4.2.4"
@@ -616,9 +642,9 @@ escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1
version "1.0.5"
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
-escodegen@1.10.0:
- version "1.10.0"
- resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.10.0.tgz#f647395de22519fbd0d928ffcf1d17e0dec2603e"
+escodegen@1.11.0:
+ version "1.11.0"
+ resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.0.tgz#b27a9389481d5bfd5bec76f7bb1eb3f8f4556589"
dependencies:
esprima "^3.1.3"
estraverse "^4.2.0"
@@ -678,7 +704,7 @@ expand-brackets@^2.1.4:
snapdragon "^0.8.1"
to-regex "^3.0.1"
-expand-template@1.1.1:
+expand-template@~1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-1.1.1.tgz#981f188c0c3a87d2e28f559bc541426ff94f21dd"
@@ -695,10 +721,14 @@ extend-shallow@^3.0.0, extend-shallow@^3.0.2:
assign-symbols "^1.0.0"
is-extendable "^1.0.1"
-extend@^3.0.0, extend@~3.0.0, extend@~3.0.1:
+extend@^3.0.0, extend@~3.0.0:
version "3.0.1"
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
+extend@~3.0.1, extend@~3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
+
extglob@^2.0.4:
version "2.0.4"
resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
@@ -737,15 +767,19 @@ fast-deep-equal@^1.0.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614"
+fast-deep-equal@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"
+
fast-glob@^2.0.2:
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.2.tgz#71723338ac9b4e0e2fff1d6748a2a13d5ed352bf"
+ version "2.2.6"
+ resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.6.tgz#a5d5b697ec8deda468d85a74035290a025a95295"
dependencies:
"@mrmlnc/readdir-enhanced" "^2.2.1"
- "@nodelib/fs.stat" "^1.0.1"
+ "@nodelib/fs.stat" "^1.1.2"
glob-parent "^3.1.0"
is-glob "^4.0.0"
- merge2 "^1.2.1"
+ merge2 "^1.2.3"
micromatch "^3.1.10"
fast-json-stable-stringify@^2.0.0:
@@ -800,12 +834,12 @@ form-data@~2.1.1:
combined-stream "^1.0.5"
mime-types "^2.1.12"
-form-data@~2.3.1:
- version "2.3.2"
- resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099"
+form-data@~2.3.1, form-data@~2.3.2:
+ version "2.3.3"
+ resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6"
dependencies:
asynckit "^0.4.0"
- combined-stream "1.0.6"
+ combined-stream "^1.0.6"
mime-types "^2.1.12"
formatio@1.2.0:
@@ -831,9 +865,9 @@ from2@^2.1.1:
inherits "^2.0.1"
readable-stream "^2.0.0"
-fs-extra@6.0.1:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-6.0.1.tgz#8abc128f7946e310135ddc93b98bddb410e7a34b"
+fs-extra@7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9"
dependencies:
graceful-fs "^4.1.2"
jsonfile "^4.0.0"
@@ -847,6 +881,14 @@ fs-extra@^1.0.0:
jsonfile "^2.1.0"
klaw "^1.0.0"
+fs-extra@~6.0.1:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-6.0.1.tgz#8abc128f7946e310135ddc93b98bddb410e7a34b"
+ dependencies:
+ graceful-fs "^4.1.2"
+ jsonfile "^4.0.0"
+ universalify "^0.1.0"
+
fs.realpath@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
@@ -907,7 +949,7 @@ glob@^5.0.15:
once "^1.3.0"
path-is-absolute "^1.0.0"
-glob@^7.1.2:
+glob@^7.0.0, glob@^7.1.2:
version "7.1.3"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1"
dependencies:
@@ -918,19 +960,23 @@ glob@^7.1.2:
once "^1.3.0"
path-is-absolute "^1.0.0"
-globby@8.0.1:
- version "8.0.1"
- resolved "https://registry.yarnpkg.com/globby/-/globby-8.0.1.tgz#b5ad48b8aa80b35b814fc1281ecc851f1d2b5b50"
+globby@8.0.2:
+ version "8.0.2"
+ resolved "https://registry.yarnpkg.com/globby/-/globby-8.0.2.tgz#5697619ccd95c5275dbb2d6faa42087c1a941d8d"
dependencies:
array-union "^1.0.1"
- dir-glob "^2.0.0"
+ dir-glob "2.0.0"
fast-glob "^2.0.2"
glob "^7.1.2"
ignore "^3.3.5"
pify "^3.0.0"
slash "^1.0.0"
-graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9:
+graceful-fs@^4.1.2, graceful-fs@^4.1.6:
+ version "4.1.15"
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00"
+
+graceful-fs@^4.1.9:
version "4.1.11"
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
@@ -968,6 +1014,13 @@ har-validator@~5.0.3:
ajv "^5.1.0"
har-schema "^2.0.0"
+har-validator@~5.1.0:
+ version "5.1.3"
+ resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080"
+ dependencies:
+ ajv "^6.5.5"
+ har-schema "^2.0.0"
+
has-ansi@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
@@ -1082,7 +1135,7 @@ ignore@^3.3.5:
version "3.3.10"
resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043"
-in-publish@2.0.0:
+in-publish@~2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51"
@@ -1097,12 +1150,17 @@ inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3:
version "2.0.3"
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
-into-stream@3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-3.1.0.tgz#96fb0a936c12babd6ff1752a17d05616abd094c6"
+interpret@^1.0.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296"
+ integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==
+
+into-stream@4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-4.0.0.tgz#ef10ee2ffb6f78af34c93194bbdc36c35f7d8a9d"
dependencies:
from2 "^2.1.1"
- p-is-promise "^1.1.0"
+ p-is-promise "^2.0.0"
is-accessor-descriptor@^0.1.6:
version "0.1.6"
@@ -1291,6 +1349,10 @@ json-schema-traverse@^0.3.0:
version "0.3.1"
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
+json-schema-traverse@^0.4.1:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
+
json-schema@0.2.3:
version "0.2.3"
resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
@@ -1436,9 +1498,9 @@ markdown-table@^1.1.0:
version "1.1.2"
resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-1.1.2.tgz#c78db948fa879903a41bce522e3b96f801c63786"
-merge2@^1.2.1:
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.2.2.tgz#03212e3da8d86c4d8523cebd6318193414f94e34"
+merge2@^1.2.3:
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.2.3.tgz#7ee99dbd69bb6481689253f018488a1b902b0ed5"
micromatch@^3.1.10:
version "3.1.10"
@@ -1462,7 +1524,17 @@ mime-db@~1.33.0:
version "1.33.0"
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db"
-mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7:
+mime-db@~1.37.0:
+ version "1.37.0"
+ resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.37.0.tgz#0b6a0ce6fdbe9576e25f1f2d2fde8830dc0ad0d8"
+
+mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.19:
+ version "2.1.21"
+ resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.21.tgz#28995aa1ecb770742fe6ae7e58f9181c744b3f96"
+ dependencies:
+ mime-db "~1.37.0"
+
+mime-types@~2.1.7:
version "2.1.18"
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8"
dependencies:
@@ -1482,7 +1554,7 @@ minimist@0.0.8:
version "0.0.8"
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
-minimist@1.2.0:
+minimist@1.2.0, minimist@~1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
@@ -1612,6 +1684,10 @@ oauth-sign@~0.8.1, oauth-sign@~0.8.2:
version "0.8.2"
resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
+oauth-sign@~0.9.0:
+ version "0.9.0"
+ resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
+
object-copy@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
@@ -1670,9 +1746,9 @@ os-tmpdir@^1.0.1, os-tmpdir@~1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
-p-is-promise@^1.1.0:
- version "1.1.0"
- resolved "http://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz#9c9456989e9f6588017b0434d56097675c3da05e"
+p-is-promise@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.0.0.tgz#7554e3d572109a87e1f3f53f6a7d85d1b194f4c5"
pascalcase@^0.1.1:
version "0.1.1"
@@ -1686,7 +1762,7 @@ 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:
+path-parse@^1.0.5, path-parse@^1.0.6:
version "1.0.6"
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
@@ -1742,38 +1818,38 @@ pinkie@^2.0.0:
version "2.0.4"
resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
-pkg-fetch@2.5.6:
- version "2.5.6"
- resolved "https://registry.yarnpkg.com/pkg-fetch/-/pkg-fetch-2.5.6.tgz#02acf074fcbf060331564b55dfb6e0e997f9c7af"
- dependencies:
- babel-runtime "6.26.0"
- byline "5.0.0"
- chalk "2.4.1"
- expand-template "1.1.1"
- fs-extra "6.0.1"
- in-publish "2.0.0"
- minimist "1.2.0"
- progress "2.0.0"
- request "2.85.0"
- request-progress "3.0.0"
- semver "5.5.0"
- unique-temp-dir "1.0.0"
+pkg-fetch@2.5.7:
+ version "2.5.7"
+ resolved "https://registry.yarnpkg.com/pkg-fetch/-/pkg-fetch-2.5.7.tgz#f253fce31eb62d40547af0761cf824e0751bff09"
+ dependencies:
+ babel-runtime "~6.26.0"
+ byline "~5.0.0"
+ chalk "~2.4.1"
+ expand-template "~1.1.1"
+ fs-extra "~6.0.1"
+ in-publish "~2.0.0"
+ minimist "~1.2.0"
+ progress "~2.0.0"
+ request "~2.88.0"
+ request-progress "~3.0.0"
+ semver "~5.6.0"
+ unique-temp-dir "~1.0.0"
pkg@^4.3.4:
- version "4.3.4"
- resolved "https://registry.yarnpkg.com/pkg/-/pkg-4.3.4.tgz#194011aee0af067e4e2b853608e7f9e06fe0c189"
+ version "4.3.7"
+ resolved "https://registry.yarnpkg.com/pkg/-/pkg-4.3.7.tgz#a80767283d728adbcdf668ad99250af440efd8e3"
dependencies:
- "@babel/parser" "7.0.0-beta.51"
+ "@babel/parser" "7.2.3"
babel-runtime "6.26.0"
- chalk "2.4.1"
- escodegen "1.10.0"
- fs-extra "6.0.1"
- globby "8.0.1"
- into-stream "3.1.0"
+ chalk "2.4.2"
+ escodegen "1.11.0"
+ fs-extra "7.0.1"
+ globby "8.0.2"
+ into-stream "4.0.0"
minimist "1.2.0"
multistream "2.1.1"
- pkg-fetch "2.5.6"
- progress "2.0.0"
+ pkg-fetch "2.5.7"
+ progress "2.0.3"
resolve "1.6.0"
stream-meter "1.0.4"
@@ -1801,14 +1877,18 @@ process-nextick-args@~2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
-progress@2.0.0, progress@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f"
+progress@2.0.3, progress@~2.0.0:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
progress@^1.1.8:
version "1.1.8"
resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"
+progress@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f"
+
promised-io@*:
version "0.3.5"
resolved "https://registry.yarnpkg.com/promised-io/-/promised-io-0.3.5.tgz#4ad217bb3658bcaae9946b17a8668ecd851e1356"
@@ -1824,10 +1904,18 @@ prompt@^1.0.0:
utile "0.3.x"
winston "2.1.x"
+psl@^1.1.24:
+ version "1.1.31"
+ resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.31.tgz#e9aa86d0101b5b105cbe93ac6b784cd547276184"
+
punycode@^1.4.1:
version "1.4.1"
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
+punycode@^2.1.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
+
q@^1.0.1:
version "1.5.1"
resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
@@ -1836,7 +1924,7 @@ qs@~6.3.0:
version "6.3.2"
resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c"
-qs@~6.5.1:
+qs@~6.5.1, qs@~6.5.2:
version "6.5.2"
resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
@@ -1865,6 +1953,13 @@ readable-stream@^2.0.0, readable-stream@^2.0.5, readable-stream@^2.1.4, readable
string_decoder "~1.1.1"
util-deprecate "~1.0.1"
+rechoir@^0.6.2:
+ version "0.6.2"
+ resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
+ integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=
+ dependencies:
+ resolve "^1.1.6"
+
regenerator-runtime@^0.11.0:
version "0.11.1"
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
@@ -1891,18 +1986,18 @@ repeat-string@^1.5.2, repeat-string@^1.6.1:
version "1.6.1"
resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
-request-progress@3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-3.0.0.tgz#4ca754081c7fec63f505e4faa825aa06cd669dbe"
- dependencies:
- throttleit "^1.0.0"
-
request-progress@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-2.0.1.tgz#5d36bb57961c673aa5b788dbc8141fdf23b44e08"
dependencies:
throttleit "^1.0.0"
+request-progress@~3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-3.0.0.tgz#4ca754081c7fec63f505e4faa825aa06cd669dbe"
+ dependencies:
+ throttleit "^1.0.0"
+
request-promise-core@1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6"
@@ -1942,7 +2037,7 @@ request@2.79.0:
tunnel-agent "~0.4.1"
uuid "^3.0.0"
-request@2.85.0, request@^2.81.0:
+request@^2.81.0:
version "2.85.0"
resolved "https://registry.yarnpkg.com/request/-/request-2.85.0.tgz#5a03615a47c61420b3eb99b7dba204f83603e1fa"
dependencies:
@@ -1994,6 +2089,31 @@ request@^2.87.0:
tunnel-agent "^0.6.0"
uuid "^3.1.0"
+request@~2.88.0:
+ version "2.88.0"
+ resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef"
+ dependencies:
+ 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"
+
resolve-url@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
@@ -2008,6 +2128,13 @@ resolve@1.6.0:
dependencies:
path-parse "^1.0.5"
+resolve@^1.1.6:
+ version "1.10.0"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba"
+ integrity sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg==
+ dependencies:
+ path-parse "^1.0.6"
+
restore-cursor@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
@@ -2035,7 +2162,7 @@ rimraf@2.x.x:
dependencies:
glob "^7.0.5"
-safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
+safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
version "5.1.2"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
@@ -2045,13 +2172,17 @@ safe-regex@^1.1.0:
dependencies:
ret "~0.1.10"
+safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
+
samsam@1.3.0, samsam@1.x, samsam@^1.1.3:
version "1.3.0"
resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.3.0.tgz#8d1d9350e25622da30de3e44ba692b5221ab7c50"
-semver@5.5.0:
- version "5.5.0"
- resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
+semver@~5.6.0:
+ version "5.6.0"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004"
series-stream@^1.0.1:
version "1.0.1"
@@ -2075,6 +2206,15 @@ set-value@^2.0.0:
is-plain-object "^2.0.3"
split-string "^3.0.1"
+shelljs@^0.8.3:
+ version "0.8.3"
+ resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.3.tgz#a7f3319520ebf09ee81275b2368adb286659b097"
+ integrity sha512-fc0BKlAWiLpwZljmOvAOTE/gXawtCoNrP5oaY7KIaQbbyHeQVg01pSEuEGvGh3HEdBU4baCD7wQBwADmM/7f7A==
+ dependencies:
+ glob "^7.0.0"
+ interpret "^1.0.0"
+ rechoir "^0.6.2"
+
signal-exit@^3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
@@ -2189,17 +2329,17 @@ ssf@~0.10.2:
frac "~1.1.2"
sshpk@^1.7.0:
- version "1.14.1"
- resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.1.tgz#130f5975eddad963f1d56f92b9ac6c51fa9f83eb"
+ version "1.16.1"
+ resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877"
dependencies:
asn1 "~0.2.3"
assert-plus "^1.0.0"
- dashdash "^1.12.0"
- getpass "^0.1.1"
- optionalDependencies:
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"
stack-trace@0.0.x:
@@ -2238,10 +2378,14 @@ string_decoder@~1.1.1:
dependencies:
safe-buffer "~5.1.0"
-stringstream@~0.0.4, stringstream@~0.0.5:
+stringstream@~0.0.4:
version "0.0.5"
resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
+stringstream@~0.0.5:
+ version "0.0.6"
+ resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72"
+
strip-ansi@^3.0.0:
version "3.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
@@ -2285,6 +2429,11 @@ text-encoding@0.6.4, text-encoding@^0.6.4:
version "0.6.4"
resolved "https://registry.yarnpkg.com/text-encoding/-/text-encoding-0.6.4.tgz#e399a982257a276dae428bb92845cb71bdc26d19"
+throttled-queue@^1.0.7:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/throttled-queue/-/throttled-queue-1.0.7.tgz#da7ed6702941993044a1c5fd2ac3a58582dd2977"
+ integrity sha512-/HT49S7m+NvdyJMoMRzIYlawKjeHn8jEc8TZaGmFi5IBu09hIiU/QoP1zcrB9X2qsVC11PgfRfqd8zEQs7PlEA==
+
throttleit@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-1.0.0.tgz#9e785836daf46743145a5984b6268d828528ac6c"
@@ -2338,6 +2487,13 @@ tough-cookie@>=2.3.3, tough-cookie@~2.3.0, tough-cookie@~2.3.3:
dependencies:
punycode "^1.4.1"
+tough-cookie@~2.4.3:
+ version "2.4.3"
+ resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781"
+ dependencies:
+ psl "^1.1.24"
+ punycode "^1.4.1"
+
traverse-chain@~0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/traverse-chain/-/traverse-chain-0.1.0.tgz#61dbc2d53b69ff6091a12a168fd7d433107e40f1"
@@ -2412,7 +2568,7 @@ union-value@^1.0.0:
is-extendable "^0.1.1"
set-value "^0.4.3"
-unique-temp-dir@1.0.0:
+unique-temp-dir@~1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz#6dce95b2681ca003eebfb304a415f9cbabcc5385"
dependencies:
@@ -2431,6 +2587,12 @@ unset-value@^1.0.0:
has-value "^0.3.1"
isobject "^3.0.0"
+uri-js@^4.2.2:
+ version "4.2.2"
+ resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0"
+ dependencies:
+ punycode "^2.1.0"
+
urix@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
@@ -2458,10 +2620,14 @@ utile@0.3.x:
ncp "1.0.x"
rimraf "2.x.x"
-uuid@^3.0.0, uuid@^3.0.1, uuid@^3.1.0:
+uuid@^3.0.0, uuid@^3.0.1:
version "3.2.1"
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14"
+uuid@^3.1.0, uuid@^3.3.2:
+ version "3.3.2"
+ resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131"
+
verror@1.10.0:
version "1.10.0"
resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
@@ -2529,6 +2695,10 @@ wrench@1.3.x:
version "1.3.9"
resolved "https://registry.yarnpkg.com/wrench/-/wrench-1.3.9.tgz#6f13ec35145317eb292ca5f6531391b244111411"
+xdg-basedir@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4"
+
xlsx@^0.13.5:
version "0.13.5"
resolved "https://registry.yarnpkg.com/xlsx/-/xlsx-0.13.5.tgz#65826ba1944c6f4d6c023b7eb6c89e6b6e0d71b7"