diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..c03b7bd --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,45 @@ +name: Super-Linter + +# Run this workflow every time a new commit pushed to your repository +on: + push: + branches: + - master + +jobs: + master-to-gh-pages: + runs-on: ubuntu-latest + + steps: + - name: checkout-master + uses: actions/checkout@v2 + with: + ref: master + - name: install-nodejs + uses: actions/setup-node@v2 + with: + node-version: '12.16.3' + registry-url: 'https://registry.npmjs.org' + + - name: config-gitbook + run: | + npm install + npm run bookinstall + npm run build + + - name: push-_book-to-branch-gh-pages + env: + TOKEN: ${{ secrets.TOKEN }} + REF: github.com/${{github.repository}} + MYEMAIL: 329106954@qq.com + MYNAME: ${{github.repository_owner}} + run: | + cd _book + git config --global user.email "${MYEMAIL}" + git config --global user.name "${MYNAME}" + git init + git remote add origin https://${REF} + git add . + git commit -m "Updated By Github Actions With Build ${{github.run_number}} of ${{github.workflow}} For Github Pages" + git branch -M master + git push --force --quiet "https://${TOKEN}@${REF}" master:gh-pages \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8bec8ec --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +_book/ \ No newline at end of file diff --git "a/HTTP\346\216\245\345\217\243.md" "b/HTTP\346\216\245\345\217\243.md" new file mode 100644 index 0000000..d46675f --- /dev/null +++ "b/HTTP\346\216\245\345\217\243.md" @@ -0,0 +1,49 @@ +# HTTP接口 + +HTTP的域名为 **** + +**国内运营商偶尔会屏蔽80端口所以建议不要使用80端口进行访问** + +**目前除了80端口还开放了`15555` `16666` `17777` `18888` `19999`这几个端口,强烈建议使用这几个端口进行访问,访问的格式为*域名+端口+路径*。例如** + +**/path** + +**阅小说图片访问的格式示例** + +**/path** + +HTTP接口返回的数据统一的格式为: + +``` json +{ + "result":{ + "code":0, + "msg":"成功" + }, + "data":{ + } +} +``` +返回的字段定义如下: + +|名称 | 类型 | 必需 | 说明 | +| ------------ | ------------| ------------ | ------------ | +| `result` | Object | 是 | HTTP返回的数据状态信息
  • `code` : `Integer类型` HTTP返回的数据状态码(非HTTP状态码)
  • `msg` : `String类型` HTTP返回的数据状态说明
| +| `data` | Object | 是 | HTTP返回的数据| + +数据的状态码`code`定义如下 + +|状态码|说明| +| ------------ | ------------ | +|0|返回数据正确| +|101|新用户创建成功| +|102|未查询到数据| +|203|书源已经失效| +|1001|参数校验出错| +|1002|返回值异常| +|1003|非法请求| +|1005|权限验证异常| +|1007|远程调用服务超时| +|9999|系统出错| + +**注:下面接口返回的数据全部在`data`对象内** diff --git a/README.md b/README.md index 870c9bf..04188e8 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +# 介绍 # 阅小说App接口文档 @@ -21,805 +22,3 @@ **[http://yuenov.com](http://yuenov.com?ch=g)** - ---- - -- [HTTP接口](#http接口) - - [书架](#书架) - - [批量检查书籍是否有更新](#批量检查书籍是否有更新) - - [搜索书籍](#搜索书籍) - - [发现](#发现) - - [发现页](#发现页) - - [分类](#分类) - - [榜单](#榜单) - - [榜单列表](#榜单列表) - - [完本](#完本) - - [专题](#专题) - - [专题列表](#专题列表) - - [发现页查看全部](#发现页查看全部) - - [书城](#书城) - - [分类书籍列表](#分类书籍列表) - - [书籍详情](#书籍详情) - - [书籍推荐](#书籍推荐) - - [书籍目录](#书籍目录) - - [书籍章节下载](#书籍章节下载) - - [章节刷新](#章节刷新) - - [其他](#其他) - - [配置接口](#配置接口) -- [声明](#声明) - -## HTTP接口 - -HTTP的域名为 **** - -**国内运营商偶尔会屏蔽80端口所以建议不要使用80端口进行访问** - -**目前除了80端口还开放了`15555` `16666` `17777` `18888` `19999`这几个端口,强烈建议使用这几个端口进行访问,访问的格式为*域名+端口+路径*。例如** - -**/path** - -**阅小说图片访问的格式示例** - -**/path** - -HTTP接口返回的数据统一的格式为: - -``` json -{ - "result":{ - "code":0, - "msg":"成功" - }, - "data":{ - } -} -``` -返回的字段定义如下: - -|名称 | 类型 | 必需 | 说明 | -| ------------ | ------------| ------------ | ------------ | -| `result` | Object | 是 | HTTP返回的数据状态信息
  • `code` : `Integer类型` HTTP返回的数据状态码(非HTTP状态码)
  • `msg` : `String类型` HTTP返回的数据状态说明
| -| `data` | Object | 是 | HTTP返回的数据| - -数据的状态码`code`定义如下 - -|状态码|说明| -| ------------ | ------------ | -|0|返回数据正确| -|101|新用户创建成功| -|102|未查询到数据| -|203|书源已经失效| -|1001|参数校验出错| -|1002|返回值异常| -|1003|非法请求| -|1005|权限验证异常| -|1007|远程调用服务超时| -|9999|系统出错| - -**注:下面接口返回的数据全部在`data`对象内** - -### 书架 - -#### 批量检查书籍是否有更新 -下载到本地的书籍在特定时机应该检查书籍是否有更新,使得本地的数据保持最新的状态。一般用于连载书籍检查是否有新章节更新。 - -与[/app/open/api/chapter/getByBookId](#书籍目录)配合使用,来更新本地缓存的目录 - - - - - - - - - - - - - - - - - - - - - - -
路径/app/open/api/book/checkUpdate
请求方式POST application/json
参数名称类型必需说明
booksList检查更新的书籍列表,每个对象的信息如下
  • bookId : Integer类型 需要检查更新的书籍号
  • chapterId : Long类型 需要检查更新的书籍最后一章的章节号
- -返回结果 - -|名称|类型|必需|说明| -| ------------ | ------------ | ------------ | ------------ | -|`updateList`| List|否|需要更新的书籍列表,每个对象的信息如下
  • bookId : Integer类型 需要检查更新的书籍号
  • chapterId : Long类型 需要检查更新的书籍最后一章的章节号
- - -#### 搜索书籍 -根据关键词搜索书籍 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
路径/app/open/api/book/search
请求方式GET
参数名称类型必需说明
keyWordString书籍关键词
pageNumInteger请求第几页的数据,pageNum最小值为1
pageSizeInteger请求每页多少条的数据
- -返回的结果 - -|名称|类型|必需|说明| -| ------------ | ------------ | ------------ |------------ | -|`list`| List|否|搜索的结果书籍列表 -|`pageNum`|Integer|否|请求第几页数据 -|`pageSize`|Integer|否|请求每页多少条的数据 -|`total`|Integer|否|实际返回多少条数据 - -书籍的字段定义如下 -|名称|类型|必需|说明| -| ------------ | ------------ | ------------ |------------ | -|`author`| String|否|作者 -|`bookId`|Integer|是|书籍号 -|`categoryName`|String|是|书籍所属分类 -|`chapterStatus`|String|否|书籍连载状态
  • `END` : `String类型` 书籍已完结
  • `SERIALIZE` : `String类型` 书籍连载中
-|`coverImg`| String|否|书籍的封面路径,**返回的是书籍封面的路径并非URL地址,需要手动拼接上*域名+端口*参考[这里](#domain)** -|`desc`|String|否|书籍内容介绍 -|`title`|String|否|书籍的名称 -|`word`|String|否|书籍的字数 - -### 发现 -#### 发现页 -App内发现页面接口 - - - - - - - - - -
路径/app/open/api/category/discovery
请求方式GET
- -返回结果 - -|名称|类型|必需|说明| -| ------------ | ------------ | ------------ |------------ | -|`list`| List|否| 发现页书籍分类列表,列表中每个对象有以下字段
  • `bookList` : `List类型` 书籍列表,每个书籍的定义在[这里](#book)
  • `categoryName` : `String类型` 每个分类的名称
  • `type` : `String类型` 每个分类的类型
    • `READ_MOST` : `String类型` 大家都在看
    • `RECENT_UPDATE` : `String类型` 最近更新
    • `CATEGORY` : `String类型` 书籍分类
  • `categoryId` : `Integer类型` 只有当**type=CATEGORY**时才有值表示书籍分类号
- -#### 分类 - -书籍的全部分类 - - - - - - - - - - -
路径/app/open/api/category/getCategoryChannel
请求方式GET
- -返回结果 - -|名称|类型|必需|说明| -| ------------ | ------------ | ------------ |------------ | -|`channels`| List|否| 获取所有的频道分类列表,目前有男生频道和女生频道,列表中每个对象包含以下字段
  • `categories` : `List类型` 分类信息列表
  • `channelId` : `Integer类型` 频道号
  • `channelName` : `String类型` 频道名称
- -分类信息的字段定义如下: - -|名称|类型|必需|说明| -| ------------ | ------------ | ------------ |------------ | -|`categoryId`| Integer |是| 分类号 -|`categoryName`| String|否| 分类名 -|`coverImgs`| List\|否| 分类的封面列表,包含该分类排名前三书籍的封面路径**并非URL地址,需要手动拼接上*域名+端口*参考[这里](#domain)** - -#### 榜单 -书籍榜单信息 - - - - - - - - - -
路径/app/open/api/rank/getList
请求方式GET
- -返回结果 - -|名称|类型|必需|说明| -| ------------ | ------------ | ------------ |------------ | -|`channels`| List|否| 获取所有的频道榜单目前有男生频道和女生频道每个对象包含以下字段
  • `ranks` : `List类型` 榜单信息列表
  • `channelId` : `Integer类型` 频道号
  • `channelName` : `String类型` 频道名称
- -榜单信息的字段定义如下: - -|名称|类型|必需|说明| -| ------------ | ------------ | ------------ |------------ | -|`rankId`| Integer |是| 榜单号 -|`rankName`| String|否| 榜单名 -|`coverImgs`| List|否| 榜单的封面列表,包含该榜单排名前三书籍的封面路径**并非URL地址,需要手动拼接上*域名+端口*参考[这里](#domain)** - -#### 榜单列表 -每个榜单内的书籍列表 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
路径/app/open/api/rank/getPage
请求方式GET
参数名称类型必需说明
channelIdInteger频道号
rankIdInteger榜单号
pageNumInteger请求第几页的数据,pageNum最小值为1
pageSizeInteger请求每页多少条的数据
- -返回结果 - -|名称|类型|必需|说明| -| ------------ | ------------ | ------------ |------------ | -|`list`| List|否| 榜单书籍列表,每个书籍的定义在[这里](#book) -|`pageNum`| Integer|否| 请求第几页的数据,pageNum最小值为1 -|`pageSize`| Integer|否| 请求每页多少条的数据 -|`total`| Integer|否|总共有多少条数据 - - -#### 完本 -所有完本书籍信息 - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
路径/app/open/api/category/getCategoryEnd
请求方式GET
参数名称类型必需说明
pageNumInteger请求第几页的数据,pageNum最小值为1
pageSizeInteger请求每页多少条的数据
- -返回数据 - -|名称|类型|必需|说明| -| ------------ | ------------ | ------------ |------------ | -|`list`| List|否| 全部完结书籍的分类列表,列表中每个对象有以下字段
  • `bookList` : `List类型` 书籍列表,每个书籍的定义在[这里](#book)
  • `categoryName` : `String类型` 每个分类的名称
  • `categoryId` : `Integer类型` 书籍分类号
-|`pageNum`| Integer|否| 请求第几页的数据,pageNum最小值为1 -|`pageSize`| Integer|否| 请求每页多少条的数据 -|`total`| Integer|否|总共有多少条数据 - -#### 专题 -书籍专题信息 - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
路径/app/open/api/book/getSpecialList
请求方式GET
参数名称类型必需说明
pageNumInteger请求第几页的数据,pageNum最小值为1
pageSizeInteger请求每页多少条的数据
- -返回结果 - -|名称|类型|必需|说明| -| ------------ | ------------ | ------------ |------------ | -|`specialList`| List|否| 全部的专题列表,列表中每个对象有以下字段
  • `bookList` : `List类型` 书籍列表,每个书籍的定义在[这里](#book)
  • `name` : `String类型` 每个专题的名称
  • `id` : `Integer类型` 专题号
- -#### 专题列表 -专题下全部的书籍和换一换列表 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
路径/app/open/api/book/getSpecialPage
请求方式GET
参数名称类型必需说明
idInteger专题号
pageNumInteger请求第几页的数据,pageNum最小值为1
pageSizeInteger请求每页多少条的数据
- -返回结果 - -|名称|类型|必需|说明| -| ------------ | ------------ | ------------ |------------ | -|`list`| List|否| 专题的书籍列表,每个书籍的定义在[这里](#book) -|`pageNum`| Integer|否| 请求第几页的数据,pageNum最小值为1 -|`pageSize`| Integer|否| 请求每页多少条的数据 -|`total`| Integer|否|总共有多少条数据 - -#### 发现页查看全部 - -查看发现页分类的全部或部分内容(查看全部,换一换) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
路径/app/open/api/category/discoveryAll
请求方式GET
参数名称类型必需说明
pageNumInteger请求第几页的数据,pageNum最小值为1
pageSizeInteger请求每页多少条的数据
typeString发现页的分类类型
  • READ_MOST : String类型 大家都在看
  • RECENT_UPDATE : String类型 最近更新
  • CATEGORY : String类型 书籍分类
categoryIdInteger书籍分类号,仅当type=CATEGORY有效
- -返回结果 - -|名称|类型|必需|说明| -| ------------ | ------------ | ------------ |------------ | -|`list`| List|否| 发现页某个分类的书籍列表,每个书籍的定义在[这里](#book) -|`pageNum`| Integer|否| 请求第几页的数据,pageNum最小值为1 -|`pageSize`| Integer|否| 请求每页多少条的数据 -|`total`| Integer|否|总共有多少条数据 - -#### 书城 - -#### 分类书籍列表 -某个分类下所有的书籍 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
路径/app/open/api/book/getCategoryId
请求方式GET
参数名称类型必需说明
pageNumInteger请求第几页的数据,pageNum最小值为1
pageSizeInteger请求每页多少条的数据
categoryIdInteger书籍所属的分类号
channelIdInteger某个频道下的分类书籍
orderByString分类书籍排序与筛选规则,不传返回全部书籍默认排序
  • NEWEST : String类型 按照最新的书籍进行排序
  • HOT : String类型 按照最火爆的书籍进行排序
  • END : String类型 筛选已完结的书籍
- -返回结果 - -|名称|类型|必需|说明| -| ------------ | ------------ | ------------ |------------ | -|`list`| List|否| 分类的书籍列表,每个书籍的定义在[这里](#book) -|`pageNum`| Integer|否| 请求第几页的数据,pageNum最小值为1 -|`pageSize`| Integer|否| 请求每页多少条的数据 -|`total`| Integer|否|总共有多少条数据 - -#### 书籍详情 -每本书的详细信息 - - - - - - - - - - - - - - - - - - - - - - - -
路径/app/open/api/book/getDetail
请求方式GET
参数名称类型必需说明
bookIdInteger书籍号
- -返回结果 - -|名称|类型|必需|说明| -| ------------ | ------------ | ------------ |------------ | -|`author`| String |否| 书籍作者 -|`bookId`| Integer|是| 书籍号 -|`categoryName`| String|是| 书籍所属分类名 -|`chapterNum`| Integer|否|总共有多少章节 -|`coverImg`| String|否|书籍的封面路径,**返回的是书籍封面的路径并非URL地址,需要手动拼接上*域名+端口*参考[这里](#domain)** -|`desc`| String|否|书籍内容介绍 -|`title`| String|否|书籍的名称 -|`update`| Object|否|书籍更新信息包含以下字段
  • `chapterId` : `Long类型` 最新的章节号
  • `chapterName` : `String类型` 最新的章节名称
  • `chapterStatus` : `String类型` 书籍连载状态
    • `END` : `String类型` 书籍已完结
    • `SERIALIZE` : `String类型` 书籍连载中
  • `time` : `Date类型` 书籍最近更新时间
-|`word`| String|否|书籍的字数 -|`recommend`| List|否|相关书籍推荐列表,每个书籍的定义在[这里](#book) - - -#### 书籍推荐 -在书籍详情中的推荐列表和换一换 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
路径/app/open/api/book/getRecommend
请求方式GET
参数名称类型必需说明
bookIdInteger书籍号
pageNumInteger请求第几页的数据,pageNum最小值为1
pageSizeInteger请求每页多少条的数据
- -返回结果 - -|名称|类型|必需|说明| -| ------------ | ------------ | ------------ |------------ | -|`list`| List|否| 书籍推荐列表,每个书籍的定义在[这里](#book) -|`pageNum`| Integer|否| 请求第几页的数据,pageNum最小值为1 -|`pageSize`| Integer|否| 请求每页多少条的数据 -|`total`| Integer|否|当前请求有多少条数据 - -#### 书籍目录 -获取书籍全部或部分目录信息,当书籍有更新时需要调用该接口来更新本地保存的目录信息,传入chapterId获取此章节之后的数据,不传chapterId是获取全部目录。如果本地已经保存过目录信息,建议最好传入最后一章chapterId来更新本地目录。而不是全量获取所有的目录。 - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
路径/app/open/api/chapter/getByBookId
请求方式GET
参数名称类型必需说明
bookIdInteger书籍号
chapterIdLong从第几章开始请求目录信息,如果不传请求全部的目录信息
- -返回结果 - -|名称|类型|必需|说明| -| ------------ | ------------ | ------------ |------------ | -|`author`| String|否| 作者 -|`bookId`| Integer|是| 书籍号 -|`coverImg`| String|否| **返回的是书籍封面的路径并非URL地址,需要手动拼接上*域名+端口*参考[这里](#domain)** -|`desc`| String|否|书籍内容介绍 -|`title`| String|否|书籍的名称 -|`word`| String|否|书籍的字数 -|`chapters`|List|书籍的目录列表,每个目录包含以下字段
  • `id` : `Long类型` 章节号
  • `name` : `String类型` 章节名
  • `v` : `Integer类型` **书籍的版本号,非常重要,书籍下载接口`/app/open/api/chapter/get`需要传递这个参数**
- - -#### 书籍章节下载 -下载章节内容,**目前开放接口不支持批量下载** - -由于书源失效会导致部分书籍不可访问。如果错误码为`203`表示书源已经失效,此时服务器会自动更新书源。
-如果书源失效并返回`203`请重新调用书籍目录接口`/app/open/api/chapter/getByBookId`来获取最新的目录信息
-此时当前接口需要传递`v`这个参数,这个参数由`/app/open/api/chapter/getByBookId`接口返回。
-`v`表示当前此书籍的版本。默认为`0`,表示此书籍的书源没有失效过。`1`表示为此书籍的书源更新过一次。
-`/app/open/api/chapter/getByBookId`返回`v=1`,如果当前接口传`v=0`表示从旧书源获取内容,会导致获取内容失败。
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
路径/app/open/api/chapter/get
请求方式POST application/json
参数名称类型必需说明
bookIdInteger下载的书籍号
chapterIdListList<Long>下载的章节号列表
vInteger书籍的版本号
- -返回结果 - -|名称|类型|必需|说明| -| ------------ | ------------ | ------------ |------------ | -|`list`| List|否| 下载的章节内容,每个章节的字段如下
  • `content` : `String类型` 章节内容
  • `id` : `Long类型` 章节号
  • `name` : `String类型` 章节名
- - #### 章节刷新 - - 刷新章节内容,获取最新的章节数据。与下载不一样,下载是获取服务器缓存的数据,但不是最新的数据。一般是下载的内容不正确时会调用该接口。该接口响应时间比较长,谨慎调用。 - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
路径/app/open/api/chapter/updateForce
请求方式POST application/json
参数名称类型必需说明
bookIdInteger更新的书籍号
chapterIdListList<Long>更新的章节号列表
- -返回结果 - -|名称|类型|必需|说明| -| ------------ | ------------ | ------------ |------------ | -|`list`| List|否| 更新的章节内容,每个章节的字段如下
  • `content` : `String类型` 章节内容
  • `id` : `Long类型` 章节号
  • `name` : `String类型` 章节名
- -### 其他 - -#### 配置接口 - -获取热门搜索,书籍默认分类等配置信息,通常是在每次开机时启动 - - - - - - - - - - - -
路径/app/open/api/system/getAppConfig
请求方式GET
- - 返回结果 - - |名称|类型|必需|说明| -| ------------ | ------------ | ------------ |------------ | -|`categories`| List|否| 书籍默认的分类列表,每个分类的字段如下
  • `categoryId` : `Integer类型` 分类号
  • `categoryName` : `String类型` 分类名
-|`hotSearch`| List|否| 热搜书籍列表,每个书籍的定义在[这里](#book) - - -## 声明 - -**服务器只提供搜索以及在线转码的计算能力,没有存储任何小说内容。如有任何疑问请通过上面提供的联系方式联系我们。** - - - diff --git a/SUMMARY.md b/SUMMARY.md new file mode 100644 index 0000000..5f2155c --- /dev/null +++ b/SUMMARY.md @@ -0,0 +1,32 @@ +# 目录 + +* [介绍](README.md) + +* [HTTP接口](HTTP接口.md) + +* [书架](书架.md) + * [批量检查书籍是否有更新](书架.md#批量检查书籍是否有更新) + * [搜索书籍](书架.md#搜索书籍) + +* [发现](发现.md) + * [发现页](发现.md#发现页) + * [分类](发现.md#分类) + * [榜单](发现.md#榜单) + * [榜单列表](发现.md#榜单列表) + * [完本](发现.md#完本) + * [专题](发现.md#专题) + * [专题列表](发现.md#专题列表) + * [发现页查看全部](发现.md#发现页查看全部) + +* [书城](书城.md) + * [分类书籍列表](书城.md#分类书籍列表) + * [书籍详情](书城.md#书籍详情) + * [书籍推荐](书城.md#书籍推荐) + * [书籍目录](书城.md#书籍目录) + * [书籍章节下载](书城.md#书籍章节下载) + * [章节刷新](书城.md#章节刷新) + +* [其他](其他.md) + * [配置接口](其他.md#配置接口) + +* [声明](声明.md) diff --git a/book.js b/book.js new file mode 100644 index 0000000..ede4de6 --- /dev/null +++ b/book.js @@ -0,0 +1,15 @@ +module.exports = { + // Enforce use of GitBook v3 + gitbook: '3.2.3', + language: "zh-hans", + plugins:[ + // "page-treeview" + ], + pluginsConfig:{ + // "page-treeview":{ + // "copyright": "Copyright © aleen42", + // "minHeaderCount": "2", + // "minHeaderDeep": "2" + // } + } +}; \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..95a0c71 --- /dev/null +++ b/package.json @@ -0,0 +1,11 @@ +{ + "scripts": { + "init":"npx gitbook init", + "bookinstall":"npx gitbook install", + "serve":"npx gitbook serve", + "build":"npx gitbook build" + }, + "dependencies": { + "gitbook-cli": "^2.3.2" + } +} diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..a2d9abc --- /dev/null +++ b/yarn.lock @@ -0,0 +1,3212 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +JSONStream@~1.3.1: + version "1.3.5" + resolved "http://nexus.51trust.net/repository/npm-group/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" + integrity sha1-MgjB8I06TZkmGrZPkjArwV4RHKA= + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + +abbrev@1, abbrev@~1.1.0: + version "1.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + integrity sha1-+PLIh60Qv2f2NPAFtph/7TF5qsg= + +abbrev@~1.0.9: + version "1.0.9" + resolved "http://nexus.51trust.net/repository/npm-group/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" + integrity sha1-kbR5JYinc4wl813W9jdSovh3YTU= + +agent-base@4, agent-base@^4.1.0, agent-base@^4.3.0: + version "4.3.0" + resolved "http://nexus.51trust.net/repository/npm-group/agent-base/-/agent-base-4.3.0.tgz#8165f01c436009bccad0b1d122f05ed770efc6ee" + integrity sha1-gWXwHENgCbzK0LHRIvBe13Dvxu4= + dependencies: + es6-promisify "^5.0.0" + +agentkeepalive@^3.3.0: + version "3.5.2" + resolved "http://nexus.51trust.net/repository/npm-group/agentkeepalive/-/agentkeepalive-3.5.2.tgz#a113924dd3fa24a0bc3b78108c450c2abee00f67" + integrity sha1-oROSTdP6JKC8O3gQjEUMKr7gD2c= + dependencies: + humanize-ms "^1.2.1" + +ajv@^4.9.1: + version "4.11.8" + resolved "http://nexus.51trust.net/repository/npm-group/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" + integrity sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY= + dependencies: + co "^4.6.0" + json-stable-stringify "^1.0.1" + +ajv@^6.12.3: + version "6.12.6" + resolved "http://nexus.51trust.net/repository/npm-group/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha1-uvWmLoArB9l3A0WG+MO69a3ybfQ= + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ansi-align@^2.0.0: + version "2.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" + integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38= + dependencies: + string-width "^2.0.0" + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= + +ansi-regex@^3.0.0, ansi-regex@~3.0.0: + version "3.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "http://nexus.51trust.net/repository/npm-group/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "http://nexus.51trust.net/repository/npm-group/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0= + dependencies: + color-convert "^1.9.0" + +ansi@^0.3.0, ansi@~0.3.1: + version "0.3.1" + resolved "http://nexus.51trust.net/repository/npm-group/ansi/-/ansi-0.3.1.tgz#0c42d4fb17160d5a9af1e484bace1c66922c1b21" + integrity sha1-DELU+xcWDVqa8eSEus4cZpIsGyE= + +ansicolors@~0.3.2: + version "0.3.2" + resolved "http://nexus.51trust.net/repository/npm-group/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979" + integrity sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk= + +ansistyles@~0.1.3: + version "0.1.3" + resolved "http://nexus.51trust.net/repository/npm-group/ansistyles/-/ansistyles-0.1.3.tgz#5de60415bda071bb37127854c864f41b23254539" + integrity sha1-XeYEFb2gcbs3EnhUyGT0GyMlRTk= + +aproba@^1.0.3, aproba@^1.1.1: + version "1.2.0" + resolved "http://nexus.51trust.net/repository/npm-group/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" + integrity sha1-aALmJk79GMeQobDVF/DyYnvyyUo= + +aproba@~1.1.2: + version "1.1.2" + resolved "http://nexus.51trust.net/repository/npm-group/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" + integrity sha1-RcZikJTeTpb2k+9+q3SuB5wkD8E= + +archy@~1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" + integrity sha1-+cjBN1fMHde8N5rHeyxipcKGjEA= + +are-we-there-yet@~1.1.2: + version "1.1.5" + resolved "http://nexus.51trust.net/repository/npm-group/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" + integrity sha1-SzXClE8GKov82mZBB2A1D+nd/CE= + dependencies: + delegates "^1.0.0" + readable-stream "^2.0.6" + +asap@^2.0.0: + version "2.0.6" + resolved "http://nexus.51trust.net/repository/npm-group/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= + +asn1@~0.2.3: + version "0.2.4" + resolved "http://nexus.51trust.net/repository/npm-group/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" + integrity sha1-jSR136tVO7M+d7VOWeiAu4ziMTY= + dependencies: + safer-buffer "~2.1.0" + +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= + +assert-plus@^0.2.0: + version "0.2.0" + resolved "http://nexus.51trust.net/repository/npm-group/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" + integrity sha1-104bh+ev/A24qttwIfP+SBAasjQ= + +async-some@~1.0.2: + version "1.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/async-some/-/async-some-1.0.2.tgz#4d8a81620d5958791b5b98f802d3207776e95509" + integrity sha1-TYqBYg1ZWHkbW5j4AtMgd3bpVQk= + dependencies: + dezalgo "^1.0.2" + +async@^2.0.1: + version "2.6.3" + resolved "http://nexus.51trust.net/repository/npm-group/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" + integrity sha1-1yYl4jRKNlbjo61Pp0n6gymdgv8= + dependencies: + lodash "^4.17.14" + +asynckit@^0.4.0: + version "0.4.0" + resolved "http://nexus.51trust.net/repository/npm-group/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= + +aws-sign2@~0.6.0: + version "0.6.0" + resolved "http://nexus.51trust.net/repository/npm-group/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" + integrity sha1-FDQt0428yU0OW4fXY81jYSwOeU8= + +aws-sign2@~0.7.0: + version "0.7.0" + resolved "http://nexus.51trust.net/repository/npm-group/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= + +aws4@^1.2.1, aws4@^1.8.0: + version "1.11.0" + resolved "http://nexus.51trust.net/repository/npm-group/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59" + integrity sha1-1h9G2DslGSUOJ4Ta9bCUeai0HFk= + +balanced-match@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= + +bash-color@0.0.4: + version "0.0.4" + resolved "http://nexus.51trust.net/repository/npm-group/bash-color/-/bash-color-0.0.4.tgz#e9be8ce33540cada4881768c59bd63865736e913" + integrity sha1-6b6M4zVAytpIgXaMWb1jhlc26RM= + +bcrypt-pbkdf@^1.0.0: + version "1.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" + integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= + dependencies: + tweetnacl "^0.14.3" + +bl@^1.0.0: + version "1.2.3" + resolved "http://nexus.51trust.net/repository/npm-group/bl/-/bl-1.2.3.tgz#1e8dd80142eac80d7158c9dccc047fb620e035e7" + integrity sha1-Ho3YAULqyA1xWMnczAR/tiDgNec= + dependencies: + readable-stream "^2.3.5" + safe-buffer "^5.1.1" + +bl@~1.1.2: + version "1.1.2" + resolved "http://nexus.51trust.net/repository/npm-group/bl/-/bl-1.1.2.tgz#fdca871a99713aa00d19e3bbba41c44787a65398" + integrity sha1-/cqHGplxOqANGeO7ukHER4emU5g= + dependencies: + readable-stream "~2.0.5" + +block-stream@*, block-stream@0.0.9: + version "0.0.9" + resolved "http://nexus.51trust.net/repository/npm-group/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" + integrity sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo= + dependencies: + inherits "~2.0.0" + +bluebird@^3.5.0, bluebird@^3.5.1: + version "3.7.2" + resolved "http://nexus.51trust.net/repository/npm-group/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha1-nyKcFb4nJFT/qXOs4NvueaGww28= + +bluebird@~3.5.0: + version "3.5.5" + resolved "http://nexus.51trust.net/repository/npm-group/bluebird/-/bluebird-3.5.5.tgz#a8d0afd73251effbbd5fe384a77d73003c17a71f" + integrity sha1-qNCv1zJR7/u9X+OEp31zADwXpx8= + +boom@2.x.x: + version "2.10.1" + resolved "http://nexus.51trust.net/repository/npm-group/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" + integrity sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8= + dependencies: + hoek "2.x.x" + +boxen@^1.0.0: + version "1.3.0" + resolved "http://nexus.51trust.net/repository/npm-group/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" + integrity sha1-VcbDmouljZxhrSLNh3Uy3rZlogs= + dependencies: + 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@^1.1.7: + version "1.1.11" + resolved "http://nexus.51trust.net/repository/npm-group/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0= + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +buffer-alloc-unsafe@^1.1.0: + version "1.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" + integrity sha1-vX3CauKXLQ7aJTvgYdupkjScGfA= + +buffer-alloc@^1.2.0: + version "1.2.0" + resolved "http://nexus.51trust.net/repository/npm-group/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" + integrity sha1-iQ3ZDZI6hz4I4Q5f1RpX5bfM4Ow= + dependencies: + buffer-alloc-unsafe "^1.1.0" + buffer-fill "^1.0.0" + +buffer-fill@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" + integrity sha1-+PeLdniYiO858gXNY39o5wISKyw= + +buffer-from@^1.0.0: + version "1.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" + integrity sha1-MnE7wCj3XAL9txDXx7zsHyxgcO8= + +buffer-shims@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" + integrity sha1-mXjOMXOIxkmth5MCjDR37wRKi1E= + +builtin-modules@^1.0.0: + version "1.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" + integrity sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8= + +builtins@0.0.7: + version "0.0.7" + resolved "http://nexus.51trust.net/repository/npm-group/builtins/-/builtins-0.0.7.tgz#355219cd6cf18dbe7c01cc7fd2dce765cfdc549a" + integrity sha1-NVIZzWzxjb58Acx/0tznZc/cVJo= + +builtins@^1.0.3: + version "1.0.3" + resolved "http://nexus.51trust.net/repository/npm-group/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" + integrity sha1-y5T662HIaWRR2zZTThQi+U8K7og= + +cacache@^10.0.0: + version "10.0.4" + resolved "http://nexus.51trust.net/repository/npm-group/cacache/-/cacache-10.0.4.tgz#6452367999eff9d4188aefd9a14e9d7c6a263460" + integrity sha1-ZFI2eZnv+dQYiu/ZoU6dfGomNGA= + dependencies: + bluebird "^3.5.1" + chownr "^1.0.1" + glob "^7.1.2" + graceful-fs "^4.1.11" + lru-cache "^4.1.1" + mississippi "^2.0.0" + mkdirp "^0.5.1" + move-concurrently "^1.0.1" + promise-inflight "^1.0.1" + rimraf "^2.6.2" + ssri "^5.2.4" + unique-filename "^1.1.0" + y18n "^4.0.0" + +cacache@^9.2.9: + version "9.3.0" + resolved "http://nexus.51trust.net/repository/npm-group/cacache/-/cacache-9.3.0.tgz#9cd58f2dd0b8c8cacf685b7067b416d6d3cf9db1" + integrity sha1-nNWPLdC4yMrPaFtwZ7QW1tPPnbE= + dependencies: + bluebird "^3.5.0" + chownr "^1.0.1" + glob "^7.1.2" + graceful-fs "^4.1.11" + lru-cache "^4.1.1" + mississippi "^1.3.0" + mkdirp "^0.5.1" + move-concurrently "^1.0.1" + promise-inflight "^1.0.1" + rimraf "^2.6.1" + ssri "^4.1.6" + unique-filename "^1.1.0" + y18n "^3.2.1" + +cacache@~9.2.9: + version "9.2.9" + resolved "http://nexus.51trust.net/repository/npm-group/cacache/-/cacache-9.2.9.tgz#f9d7ffe039851ec94c28290662afa4dd4bb9e8dd" + integrity sha1-+df/4DmFHslMKCkGYq+k3Uu56N0= + dependencies: + bluebird "^3.5.0" + chownr "^1.0.1" + glob "^7.1.2" + graceful-fs "^4.1.11" + lru-cache "^4.1.1" + mississippi "^1.3.0" + mkdirp "^0.5.1" + move-concurrently "^1.0.1" + promise-inflight "^1.0.1" + rimraf "^2.6.1" + ssri "^4.1.6" + unique-filename "^1.1.0" + y18n "^3.2.1" + +call-limit@~1.1.0: + version "1.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/call-limit/-/call-limit-1.1.1.tgz#ef15f2670db3f1992557e2d965abc459e6e358d4" + integrity sha1-7xXyZw2z8ZklV+LZZavEWebjWNQ= + +camelcase@^4.0.0: + version "4.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" + integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= + +capture-stack-trace@^1.0.0: + version "1.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d" + integrity sha1-psC74fOPOqC5Ijjstv9Cw0TUE10= + +caseless@~0.11.0: + version "0.11.0" + resolved "http://nexus.51trust.net/repository/npm-group/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" + integrity sha1-cVuW6phBWTzDMGeSP17GDr2k99c= + +caseless@~0.12.0: + version "0.12.0" + resolved "http://nexus.51trust.net/repository/npm-group/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= + +chalk@^1.0.0, chalk@^1.1.1: + version "1.1.3" + resolved "http://nexus.51trust.net/repository/npm-group/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chalk@^2.0.1: + version "2.4.2" + resolved "http://nexus.51trust.net/repository/npm-group/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ= + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +char-spinner@~1.0.1: + version "1.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/char-spinner/-/char-spinner-1.0.1.tgz#e6ea67bd247e107112983b7ab0479ed362800081" + integrity sha1-5upnvSR+EHESmDt6sEee02KAAIE= + +chmodr@~1.0.2: + version "1.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/chmodr/-/chmodr-1.0.2.tgz#04662b932d0f02ec66deaa2b0ea42811968e3eb9" + integrity sha1-BGYrky0PAuxm3qorDqQoEZaOPrk= + +chownr@^1.0.1: + version "1.1.4" + resolved "http://nexus.51trust.net/repository/npm-group/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" + integrity sha1-b8nXtC0ypYNZYzdmbn0ICE2izGs= + +chownr@~1.0.1: + version "1.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" + integrity sha1-4qdQQqlVGQi+vSW4Uj1fl2nXkYE= + +cli-boxes@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" + integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM= + +clone@^1.0.2: + version "1.0.4" + resolved "http://nexus.51trust.net/repository/npm-group/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= + +cmd-shim@~2.0.2: + version "2.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/cmd-shim/-/cmd-shim-2.0.2.tgz#6fcbda99483a8fd15d7d30a196ca69d688a2efdb" + integrity sha1-b8vamUg6j9FdfTChlspp1oii79s= + dependencies: + graceful-fs "^4.1.2" + mkdirp "~0.5.0" + +co@^4.6.0: + version "4.6.0" + resolved "http://nexus.51trust.net/repository/npm-group/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= + +code-point-at@^1.0.0: + version "1.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= + +color-convert@^1.9.0: + version "1.9.3" + resolved "http://nexus.51trust.net/repository/npm-group/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg= + dependencies: + color-name "1.1.3" + +color-name@1.1.3: + version "1.1.3" + resolved "http://nexus.51trust.net/repository/npm-group/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + +columnify@~1.5.4: + version "1.5.4" + resolved "http://nexus.51trust.net/repository/npm-group/columnify/-/columnify-1.5.4.tgz#4737ddf1c7b69a8a7c340570782e947eec8e78bb" + integrity sha1-Rzfd8ce2mop8NAVweC6UfuyOeLs= + dependencies: + strip-ansi "^3.0.0" + wcwidth "^1.0.0" + +combined-stream@^1.0.5, combined-stream@^1.0.6, combined-stream@~1.0.5, combined-stream@~1.0.6: + version "1.0.8" + resolved "http://nexus.51trust.net/repository/npm-group/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha1-w9RaizT9cwYxoRCoolIGgrMdWn8= + dependencies: + delayed-stream "~1.0.0" + +commander@2.11.0: + version "2.11.0" + resolved "http://nexus.51trust.net/repository/npm-group/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" + integrity sha1-FXFS/R56bI2YpbcVzzdt+SgARWM= + +commander@^2.9.0: + version "2.20.3" + resolved "http://nexus.51trust.net/repository/npm-group/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha1-/UhehMA+tIgcIHIrpIA16FMa6zM= + +concat-map@0.0.1: + version "0.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= + +concat-stream@^1.5.0, concat-stream@^1.5.2: + version "1.6.2" + resolved "http://nexus.51trust.net/repository/npm-group/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + integrity sha1-kEvfGUzTEi/Gdcd/xKw9T/D9GjQ= + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + +config-chain@~1.1.10, config-chain@~1.1.11: + version "1.1.12" + resolved "http://nexus.51trust.net/repository/npm-group/config-chain/-/config-chain-1.1.12.tgz#0fde8d091200eb5e808caf25fe618c02f48e4efa" + integrity sha1-D96NCRIA616AjK8l/mGMAvSOTvo= + dependencies: + ini "^1.3.4" + proto-list "~1.2.1" + +configstore@^3.0.0: + version "3.1.5" + resolved "http://nexus.51trust.net/repository/npm-group/configstore/-/configstore-3.1.5.tgz#e9af331fadc14dabd544d3e7e76dc446a09a530f" + integrity sha1-6a8zH63BTavVRNPn523ERqCaUw8= + dependencies: + dot-prop "^4.2.1" + 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@^1.0.0, console-control-strings@~1.1.0: + version "1.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= + +copy-concurrently@^1.0.0: + version "1.0.5" + resolved "http://nexus.51trust.net/repository/npm-group/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" + integrity sha1-kilzmMrjSTf8r9bsgTnBgFHwteA= + dependencies: + 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" + +core-util-is@1.0.2, core-util-is@~1.0.0: + version "1.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= + +create-error-class@^3.0.0: + version "3.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" + integrity sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y= + dependencies: + capture-stack-trace "^1.0.0" + +cross-spawn@^5.0.1: + version "5.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= + dependencies: + lru-cache "^4.0.1" + shebang-command "^1.2.0" + which "^1.2.9" + +cryptiles@2.x.x: + version "2.0.5" + resolved "http://nexus.51trust.net/repository/npm-group/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" + integrity sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g= + dependencies: + boom "2.x.x" + +crypto-random-string@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" + integrity sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4= + +cyclist@^1.0.1: + version "1.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" + integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk= + +dashdash@^1.12.0: + version "1.14.1" + resolved "http://nexus.51trust.net/repository/npm-group/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= + dependencies: + assert-plus "^1.0.0" + +debug@3.1.0: + version "3.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" + integrity sha1-W7WgZyYotkFJVmuhaBnmFRjGcmE= + dependencies: + ms "2.0.0" + +debug@^3.1.0: + version "3.2.7" + resolved "http://nexus.51trust.net/repository/npm-group/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + integrity sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o= + dependencies: + ms "^2.1.1" + +debuglog@^1.0.1: + version "1.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492" + integrity sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI= + +deep-extend@^0.6.0: + version "0.6.0" + resolved "http://nexus.51trust.net/repository/npm-group/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + integrity sha1-xPp8lUBKF6nD6Mp+FTcxK3NjMKw= + +defaults@^1.0.3: + version "1.0.3" + resolved "http://nexus.51trust.net/repository/npm-group/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" + integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730= + dependencies: + clone "^1.0.2" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= + +delegates@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= + +detect-indent@~5.0.0: + version "5.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" + integrity sha1-OHHMCmoALow+Wzz38zYmRnXwa50= + +dezalgo@^1.0.0, dezalgo@^1.0.1, dezalgo@^1.0.2, dezalgo@~1.0.3: + version "1.0.3" + resolved "http://nexus.51trust.net/repository/npm-group/dezalgo/-/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456" + integrity sha1-f3Qt4Gb8dIvI24IFad3c5Jvw1FY= + dependencies: + asap "^2.0.0" + wrappy "1" + +dot-prop@^4.2.1: + version "4.2.1" + resolved "http://nexus.51trust.net/repository/npm-group/dot-prop/-/dot-prop-4.2.1.tgz#45884194a71fc2cda71cbb4bceb3a4dd2f433ba4" + integrity sha1-RYhBlKcfws2nHLtLzrOk3S9DO6Q= + dependencies: + is-obj "^1.0.0" + +duplexer3@^0.1.4: + version "0.1.4" + resolved "http://nexus.51trust.net/repository/npm-group/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" + integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= + +duplexify@^3.4.2, duplexify@^3.6.0: + version "3.7.1" + resolved "http://nexus.51trust.net/repository/npm-group/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" + integrity sha1-Kk31MX9sz9kfhtb9JdjYoQO4gwk= + dependencies: + end-of-stream "^1.0.0" + inherits "^2.0.1" + readable-stream "^2.0.0" + stream-shift "^1.0.0" + +ecc-jsbn@~0.1.1: + version "0.1.2" + resolved "http://nexus.51trust.net/repository/npm-group/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" + integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= + dependencies: + jsbn "~0.1.0" + safer-buffer "^2.1.0" + +editor@~1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/editor/-/editor-1.0.0.tgz#60c7f87bd62bcc6a894fa8ccd6afb7823a24f742" + integrity sha1-YMf4e9YrzGqJT6jM1q+3gjok90I= + +encoding@^0.1.11: + version "0.1.13" + resolved "http://nexus.51trust.net/repository/npm-group/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" + integrity sha1-VldK/deR9UqOmyeFwFgqLSYhD6k= + dependencies: + iconv-lite "^0.6.2" + +end-of-stream@^1.0.0, end-of-stream@^1.1.0: + version "1.4.4" + resolved "http://nexus.51trust.net/repository/npm-group/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha1-WuZKX0UFe682JuwU2gyl5LJDHrA= + dependencies: + once "^1.4.0" + +err-code@^1.0.0: + version "1.1.2" + resolved "http://nexus.51trust.net/repository/npm-group/err-code/-/err-code-1.1.2.tgz#06e0116d3028f6aef4806849eb0ea6a748ae6960" + integrity sha1-BuARbTAo9q70gGhJ6w6mp0iuaWA= + +"errno@>=0.1.1 <0.2.0-0": + version "0.1.8" + resolved "http://nexus.51trust.net/repository/npm-group/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f" + integrity sha1-i7Ppx9Rjvkl2/4iPdrSAnrwugR8= + dependencies: + prr "~1.0.1" + +es6-promise@^4.0.3: + version "4.2.8" + resolved "http://nexus.51trust.net/repository/npm-group/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" + integrity sha1-TrIVlMlyvEBVPSduUQU5FD21Pgo= + +es6-promisify@^5.0.0: + version "5.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" + integrity sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM= + dependencies: + es6-promise "^4.0.3" + +escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "http://nexus.51trust.net/repository/npm-group/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + +execa@^0.7.0: + version "0.7.0" + resolved "http://nexus.51trust.net/repository/npm-group/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" + integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= + dependencies: + 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" + +extend@~3.0.0, extend@~3.0.2: + version "3.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha1-+LETa0Bx+9jrFAr/hYsQGewpFfo= + +extsprintf@1.3.0: + version "1.3.0" + resolved "http://nexus.51trust.net/repository/npm-group/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= + +extsprintf@^1.2.0: + version "1.4.0" + resolved "http://nexus.51trust.net/repository/npm-group/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" + integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= + +fast-deep-equal@^3.1.1: + version "3.1.3" + resolved "http://nexus.51trust.net/repository/npm-group/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU= + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM= + +flush-write-stream@^1.0.0: + version "1.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" + integrity sha1-jdfYc6G6vCB9lOrQwuDkQnbr8ug= + dependencies: + inherits "^2.0.3" + readable-stream "^2.3.6" + +forever-agent@~0.6.1: + version "0.6.1" + resolved "http://nexus.51trust.net/repository/npm-group/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= + +form-data@~1.0.0-rc4: + version "1.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/form-data/-/form-data-1.0.1.tgz#ae315db9a4907fa065502304a66d7733475ee37c" + integrity sha1-rjFduaSQf6BlUCMEpm13M0de43w= + dependencies: + async "^2.0.1" + combined-stream "^1.0.5" + mime-types "^2.1.11" + +form-data@~2.1.1: + version "2.1.4" + resolved "http://nexus.51trust.net/repository/npm-group/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" + integrity sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE= + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.5" + mime-types "^2.1.12" + +form-data@~2.3.2: + version "2.3.3" + resolved "http://nexus.51trust.net/repository/npm-group/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" + integrity sha1-3M5SwF9kTymManq5Nr1yTO/786Y= + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.6" + mime-types "^2.1.12" + +from2@^1.3.0: + version "1.3.0" + resolved "http://nexus.51trust.net/repository/npm-group/from2/-/from2-1.3.0.tgz#88413baaa5f9a597cfde9221d86986cd3c061dfd" + integrity sha1-iEE7qqX5pZfP3pIh2GmGzTwGHf0= + dependencies: + inherits "~2.0.1" + readable-stream "~1.1.10" + +from2@^2.1.0: + version "2.3.0" + resolved "http://nexus.51trust.net/repository/npm-group/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" + integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8= + dependencies: + inherits "^2.0.1" + readable-stream "^2.0.0" + +fs-constants@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" + integrity sha1-a+Dem+mYzhavivwkSXue6bfM2a0= + +fs-extra@3.0.1: + version "3.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/fs-extra/-/fs-extra-3.0.1.tgz#3794f378c58b342ea7dbbb23095109c4b3b62291" + integrity sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE= + dependencies: + graceful-fs "^4.1.2" + jsonfile "^3.0.0" + universalify "^0.1.0" + +fs-vacuum@~1.2.10, fs-vacuum@~1.2.9: + version "1.2.10" + resolved "http://nexus.51trust.net/repository/npm-group/fs-vacuum/-/fs-vacuum-1.2.10.tgz#b7629bec07a4031a2548fdf99f5ecf1cc8b31e36" + integrity sha1-t2Kb7AekAxolSP35n17PHMizHjY= + dependencies: + graceful-fs "^4.1.2" + path-is-inside "^1.0.1" + rimraf "^2.5.2" + +fs-write-stream-atomic@^1.0.8, fs-write-stream-atomic@~1.0.10, fs-write-stream-atomic@~1.0.8: + version "1.0.10" + resolved "http://nexus.51trust.net/repository/npm-group/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" + integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk= + dependencies: + graceful-fs "^4.1.2" + iferr "^0.1.5" + imurmurhash "^0.1.4" + readable-stream "1 || 2" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= + +fstream-ignore@^1.0.0: + version "1.0.5" + resolved "http://nexus.51trust.net/repository/npm-group/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" + integrity sha1-nDHa40dnAY/h0kmyTa2mfQktoQU= + dependencies: + fstream "^1.0.0" + inherits "2" + minimatch "^3.0.0" + +fstream-npm@~1.1.1: + version "1.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/fstream-npm/-/fstream-npm-1.1.1.tgz#6b9175db6239a83d8209e232426c494dbb29690c" + integrity sha1-a5F122I5qD2CCeIyQmxJTbspaQw= + dependencies: + fstream-ignore "^1.0.0" + inherits "2" + +fstream-npm@~1.2.1: + version "1.2.1" + resolved "http://nexus.51trust.net/repository/npm-group/fstream-npm/-/fstream-npm-1.2.1.tgz#08c4a452f789dcbac4c89a4563c902b2c862fd5b" + integrity sha1-CMSkUveJ3LrEyJpFY8kCsshi/Vs= + dependencies: + fstream-ignore "^1.0.0" + inherits "2" + +fstream@^1.0.0, fstream@^1.0.12, fstream@~1.0.10, fstream@~1.0.11: + version "1.0.12" + resolved "http://nexus.51trust.net/repository/npm-group/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" + integrity sha1-Touo7i1Ivk99DeUFRVVI6uWTIEU= + dependencies: + graceful-fs "^4.1.2" + inherits "~2.0.0" + mkdirp ">=0.5 0" + rimraf "2" + +function-bind@^1.1.1: + version "1.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0= + +gauge@~1.2.5: + version "1.2.7" + resolved "http://nexus.51trust.net/repository/npm-group/gauge/-/gauge-1.2.7.tgz#e9cec5483d3d4ee0ef44b60a7d99e4935e136d93" + integrity sha1-6c7FSD09TuDvRLYKfZnkk14TbZM= + dependencies: + ansi "^0.3.0" + has-unicode "^2.0.0" + lodash.pad "^4.1.0" + lodash.padend "^4.1.0" + lodash.padstart "^4.1.0" + +gauge@~2.6.0: + version "2.6.0" + resolved "http://nexus.51trust.net/repository/npm-group/gauge/-/gauge-2.6.0.tgz#d35301ad18e96902b4751dcbbe40f4218b942a46" + integrity sha1-01MBrRjpaQK0dR3LvkD0IYuUKkY= + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-color "^0.1.7" + 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" + +gauge@~2.7.3: + version "2.7.4" + resolved "http://nexus.51trust.net/repository/npm-group/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= + dependencies: + 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" + +generate-function@^2.0.0: + version "2.3.1" + resolved "http://nexus.51trust.net/repository/npm-group/generate-function/-/generate-function-2.3.1.tgz#f069617690c10c868e73b8465746764f97c3479f" + integrity sha1-8GlhdpDBDIaOc7hGV0Z2T5fDR58= + dependencies: + is-property "^1.0.2" + +generate-object-property@^1.1.0: + version "1.2.0" + resolved "http://nexus.51trust.net/repository/npm-group/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" + integrity sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA= + dependencies: + is-property "^1.0.0" + +genfun@^4.0.1: + version "4.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/genfun/-/genfun-4.0.1.tgz#ed10041f2e4a7f1b0a38466d17a5c3e27df1dfc1" + integrity sha1-7RAEHy5KfxsKOEZtF6XD4n3x38E= + +get-stream@^3.0.0: + version "3.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= + +getpass@^0.1.1: + version "0.1.7" + resolved "http://nexus.51trust.net/repository/npm-group/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= + dependencies: + assert-plus "^1.0.0" + +gitbook-cli@^2.3.2: + version "2.3.2" + resolved "http://nexus.51trust.net/repository/npm-group/gitbook-cli/-/gitbook-cli-2.3.2.tgz#5e893582e1f743f6fa920c3c3eb36b62ea4a31a0" + integrity sha1-Xok1guH3Q/b6kgw8PrNrYupKMaA= + dependencies: + bash-color "0.0.4" + commander "2.11.0" + fs-extra "3.0.1" + lodash "4.17.4" + npm "5.1.0" + npmi "1.0.1" + optimist "0.6.1" + q "1.5.0" + semver "5.3.0" + tmp "0.0.31" + user-home "2.0.0" + +github-url-from-git@~1.4.0: + version "1.4.0" + resolved "http://nexus.51trust.net/repository/npm-group/github-url-from-git/-/github-url-from-git-1.4.0.tgz#285e6b520819001bde128674704379e4ff03e0de" + integrity sha1-KF5rUggZABveEoZ0cEN55P8D4N4= + +github-url-from-username-repo@~1.0.2: + version "1.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/github-url-from-username-repo/-/github-url-from-username-repo-1.0.2.tgz#7dd79330d2abe69c10c2cef79714c97215791dfa" + integrity sha1-fdeTMNKr5pwQws73lxTJchV5Hfo= + +glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@~7.1.2: + version "7.1.6" + resolved "http://nexus.51trust.net/repository/npm-group/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" + integrity sha1-FB8zuBp8JJLhJVlDB0gMRmeSeKY= + 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" + +glob@~7.0.6: + version "7.0.6" + resolved "http://nexus.51trust.net/repository/npm-group/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a" + integrity sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo= + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.2" + once "^1.3.0" + path-is-absolute "^1.0.0" + +got@^6.7.1: + version "6.7.1" + resolved "http://nexus.51trust.net/repository/npm-group/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" + integrity sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA= + dependencies: + 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" + +graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: + version "4.2.6" + resolved "http://nexus.51trust.net/repository/npm-group/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" + integrity sha1-/wQLKwhTsjw9MQJ1I3BvGIXXa+4= + +graceful-fs@~4.1.11, graceful-fs@~4.1.6: + version "4.1.15" + resolved "http://nexus.51trust.net/repository/npm-group/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" + integrity sha1-/7cD4QZuig7qpMi4C6klPu77+wA= + +har-schema@^1.0.5: + version "1.0.5" + resolved "http://nexus.51trust.net/repository/npm-group/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" + integrity sha1-0mMTX0MwfALGAq/I/pWXDAFRNp4= + +har-schema@^2.0.0: + version "2.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= + +har-validator@~2.0.6: + version "2.0.6" + resolved "http://nexus.51trust.net/repository/npm-group/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" + integrity sha1-zcvAgYgmWtEZtqWnyKtw7s+10n0= + dependencies: + chalk "^1.1.1" + commander "^2.9.0" + is-my-json-valid "^2.12.4" + pinkie-promise "^2.0.0" + +har-validator@~4.2.1: + version "4.2.1" + resolved "http://nexus.51trust.net/repository/npm-group/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" + integrity sha1-M0gdDxu/9gDdID11gSpqX7oALio= + dependencies: + ajv "^4.9.1" + har-schema "^1.0.5" + +har-validator@~5.1.3: + version "5.1.5" + resolved "http://nexus.51trust.net/repository/npm-group/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" + integrity sha1-HwgDufjLIMD6E4It8ezds2veHv0= + dependencies: + ajv "^6.12.3" + har-schema "^2.0.0" + +has-ansi@^2.0.0: + version "2.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= + dependencies: + ansi-regex "^2.0.0" + +has-color@^0.1.7: + version "0.1.7" + resolved "http://nexus.51trust.net/repository/npm-group/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" + integrity sha1-ZxRKUmDDT8PMpnfQQdr1L+e3iy8= + +has-flag@^3.0.0: + version "3.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + +has-unicode@^2.0.0, has-unicode@~2.0.1: + version "2.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= + +has@^1.0.3: + version "1.0.3" + resolved "http://nexus.51trust.net/repository/npm-group/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y= + dependencies: + function-bind "^1.1.1" + +hawk@~3.1.3: + version "3.1.3" + resolved "http://nexus.51trust.net/repository/npm-group/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" + integrity sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ= + dependencies: + boom "2.x.x" + cryptiles "2.x.x" + hoek "2.x.x" + sntp "1.x.x" + +hoek@2.x.x: + version "2.16.3" + resolved "http://nexus.51trust.net/repository/npm-group/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" + integrity sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0= + +hosted-git-info@^2.1.4, hosted-git-info@^2.1.5, hosted-git-info@^2.4.2, hosted-git-info@^2.7.1: + version "2.8.8" + resolved "http://nexus.51trust.net/repository/npm-group/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" + integrity sha1-dTm9S8Hg4KiVgVouAmJCCxKFhIg= + +hosted-git-info@~2.1.5: + version "2.1.5" + resolved "http://nexus.51trust.net/repository/npm-group/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" + integrity sha1-C6gdkNouJas0ozLm7HeTbhWYEYs= + +hosted-git-info@~2.5.0: + version "2.5.0" + resolved "http://nexus.51trust.net/repository/npm-group/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" + integrity sha1-bWDjSzq7yDEwYsO3mO+NkBoHrzw= + +http-cache-semantics@^3.8.0: + version "3.8.1" + resolved "http://nexus.51trust.net/repository/npm-group/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2" + integrity sha1-ObDhat2bYFvwqe89nar0hDtMrNI= + +http-proxy-agent@^2.0.0: + version "2.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz#e4821beef5b2142a2026bd73926fe537631c5405" + integrity sha1-5IIb7vWyFCogJr1zkm/lN2McVAU= + dependencies: + agent-base "4" + debug "3.1.0" + +http-signature@~1.1.0: + version "1.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" + integrity sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8= + dependencies: + assert-plus "^0.2.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +http-signature@~1.2.0: + version "1.2.0" + resolved "http://nexus.51trust.net/repository/npm-group/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= + dependencies: + assert-plus "^1.0.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +https-proxy-agent@^2.1.0: + version "2.2.4" + resolved "http://nexus.51trust.net/repository/npm-group/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz#4ee7a737abd92678a293d9b34a1af4d0d08c787b" + integrity sha1-TuenN6vZJniik9mzShr00NCMeHs= + dependencies: + agent-base "^4.3.0" + debug "^3.1.0" + +humanize-ms@^1.2.1: + version "1.2.1" + resolved "http://nexus.51trust.net/repository/npm-group/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" + integrity sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0= + dependencies: + ms "^2.0.0" + +iconv-lite@^0.6.2: + version "0.6.2" + resolved "http://nexus.51trust.net/repository/npm-group/iconv-lite/-/iconv-lite-0.6.2.tgz#ce13d1875b0c3a674bd6a04b7f76b01b1b6ded01" + integrity sha1-zhPRh1sMOmdL1qBLf3awGxtt7QE= + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + +iferr@^0.1.5, iferr@~0.1.5: + version "0.1.5" + resolved "http://nexus.51trust.net/repository/npm-group/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" + integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= + +import-lazy@^2.1.0: + version "2.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" + integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "http://nexus.51trust.net/repository/npm-group/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= + +inflight@^1.0.4, inflight@~1.0.4, inflight@~1.0.6: + version "1.0.6" + resolved "http://nexus.51trust.net/repository/npm-group/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: + version "2.0.4" + resolved "http://nexus.51trust.net/repository/npm-group/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w= + +ini@^1.3.4, ini@~1.3.0, ini@~1.3.4: + version "1.3.8" + resolved "http://nexus.51trust.net/repository/npm-group/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" + integrity sha1-op2kJbSIBvNHZ6Tvzjlyaa8oQyw= + +init-package-json@~1.10.1: + version "1.10.3" + resolved "http://nexus.51trust.net/repository/npm-group/init-package-json/-/init-package-json-1.10.3.tgz#45ffe2f610a8ca134f2bd1db5637b235070f6cbe" + integrity sha1-Rf/i9hCoyhNPK9HbVjeyNQcPbL4= + dependencies: + 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" + +init-package-json@~1.9.4: + version "1.9.6" + resolved "http://nexus.51trust.net/repository/npm-group/init-package-json/-/init-package-json-1.9.6.tgz#789fc2b74466a4952b9ea77c0575bc78ebd60a61" + integrity sha1-eJ/Ct0RmpJUrnqd8BXW8eOvWCmE= + dependencies: + glob "^7.1.1" + npm-package-arg "^4.0.0 || ^5.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" + +ip@^1.1.4: + version "1.1.5" + resolved "http://nexus.51trust.net/repository/npm-group/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" + integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= + +is-builtin-module@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" + integrity sha1-VAVy0096wxGfj3bDDLwbHgN6/74= + dependencies: + builtin-modules "^1.0.0" + +is-core-module@^2.2.0: + version "2.2.0" + resolved "http://nexus.51trust.net/repository/npm-group/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a" + integrity sha1-lwN+89UiJNhRY/VZeytj2a/tmBo= + dependencies: + has "^1.0.3" + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= + +is-my-ip-valid@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz#7b351b8e8edd4d3995d4d066680e664d94696824" + integrity sha1-ezUbjo7dTTmV1NBmaA5mTZRpaCQ= + +is-my-json-valid@^2.12.4: + version "2.20.5" + resolved "http://nexus.51trust.net/repository/npm-group/is-my-json-valid/-/is-my-json-valid-2.20.5.tgz#5eca6a8232a687f68869b7361be1612e7512e5df" + integrity sha1-XspqgjKmh/aIabc2G+FhLnUS5d8= + dependencies: + generate-function "^2.0.0" + generate-object-property "^1.1.0" + is-my-ip-valid "^1.0.0" + jsonpointer "^4.0.0" + xtend "^4.0.0" + +is-npm@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" + integrity sha1-8vtjpl5JBbQGyGBydloaTceTufQ= + +is-obj@^1.0.0: + version "1.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" + integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= + +is-property@^1.0.0, is-property@^1.0.2: + version "1.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" + integrity sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ= + +is-redirect@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" + integrity sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ= + +is-retry-allowed@^1.0.0: + version "1.2.0" + resolved "http://nexus.51trust.net/repository/npm-group/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" + integrity sha1-13hIi9CkZmo76KFIK58rqv7eqLQ= + +is-stream@^1.0.0, is-stream@^1.1.0: + version "1.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= + +is-typedarray@~1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= + +isarray@0.0.1: + version "0.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= + +isarray@~1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= + +isexe@^2.0.0: + version "2.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + +isstream@~0.1.2: + version "0.1.2" + resolved "http://nexus.51trust.net/repository/npm-group/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= + +jsbn@~0.1.0: + version "0.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= + +json-parse-better-errors@^1.0.0, json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha1-u4Z8+zRQ5pEHwTHRxRS6s9yLyqk= + +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "http://nexus.51trust.net/repository/npm-group/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha1-fEeAWpQxmSjgV3dAXcEuH3pO4C0= + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "http://nexus.51trust.net/repository/npm-group/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha1-afaofZUTq4u4/mO9sJecRI5oRmA= + +json-schema@0.2.3: + version "0.2.3" + resolved "http://nexus.51trust.net/repository/npm-group/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= + +json-stable-stringify@^1.0.1: + version "1.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" + integrity sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8= + dependencies: + jsonify "~0.0.0" + +json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= + +jsonfile@^3.0.0: + version "3.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/jsonfile/-/jsonfile-3.0.1.tgz#a5ecc6f65f53f662c4415c7675a0331d0992ec66" + integrity sha1-pezG9l9T9mLEQVx2daAzHQmS7GY= + optionalDependencies: + graceful-fs "^4.1.6" + +jsonify@~0.0.0: + version "0.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" + integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM= + +jsonparse@^1.2.0: + version "1.3.1" + resolved "http://nexus.51trust.net/repository/npm-group/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA= + +jsonpointer@^4.0.0: + version "4.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/jsonpointer/-/jsonpointer-4.1.0.tgz#501fb89986a2389765ba09e6053299ceb4f2c2cc" + integrity sha1-UB+4mYaiOJdlugnmBTKZzrTywsw= + +jsprim@^1.2.2: + version "1.4.1" + resolved "http://nexus.51trust.net/repository/npm-group/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" + integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.2.3" + verror "1.10.0" + +latest-version@^3.0.0: + version "3.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" + integrity sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU= + dependencies: + package-json "^4.0.0" + +lazy-property@~1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/lazy-property/-/lazy-property-1.0.0.tgz#84ddc4b370679ba8bd4cdcfa4c06b43d57111147" + integrity sha1-hN3Es3Bnm6i9TNz6TAa0PVcREUc= + +lockfile@~1.0.1, lockfile@~1.0.3: + version "1.0.4" + resolved "http://nexus.51trust.net/repository/npm-group/lockfile/-/lockfile-1.0.4.tgz#07f819d25ae48f87e538e6578b6964a4981a5609" + integrity sha1-B/gZ0lrkj4flOOZXi2lkpJgaVgk= + dependencies: + signal-exit "^3.0.2" + +lodash._baseuniq@~4.6.0: + version "4.6.0" + resolved "http://nexus.51trust.net/repository/npm-group/lodash._baseuniq/-/lodash._baseuniq-4.6.0.tgz#0ebb44e456814af7905c6212fa2c9b2d51b841e8" + integrity sha1-DrtE5FaBSveQXGIS+iybLVG4Qeg= + dependencies: + lodash._createset "~4.0.0" + lodash._root "~3.0.0" + +lodash._createset@~4.0.0: + version "4.0.3" + resolved "http://nexus.51trust.net/repository/npm-group/lodash._createset/-/lodash._createset-4.0.3.tgz#0f4659fbb09d75194fa9e2b88a6644d363c9fe26" + integrity sha1-D0ZZ+7CddRlPqeK4imZE02PJ/iY= + +lodash._root@~3.0.0: + version "3.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" + integrity sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI= + +lodash.clonedeep@~4.5.0: + version "4.5.0" + resolved "http://nexus.51trust.net/repository/npm-group/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" + integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= + +lodash.pad@^4.1.0: + version "4.5.1" + resolved "http://nexus.51trust.net/repository/npm-group/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70" + integrity sha1-QzCUmoM6fI2iLMIPaibE1Z3runA= + +lodash.padend@^4.1.0: + version "4.6.1" + resolved "http://nexus.51trust.net/repository/npm-group/lodash.padend/-/lodash.padend-4.6.1.tgz#53ccba047d06e158d311f45da625f4e49e6f166e" + integrity sha1-U8y6BH0G4VjTEfRdpiX05J5vFm4= + +lodash.padstart@^4.1.0: + version "4.6.1" + resolved "http://nexus.51trust.net/repository/npm-group/lodash.padstart/-/lodash.padstart-4.6.1.tgz#d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b" + integrity sha1-0uPuv/DZ05rVD1y9G1KnvOa7YRs= + +lodash.union@~4.6.0: + version "4.6.0" + resolved "http://nexus.51trust.net/repository/npm-group/lodash.union/-/lodash.union-4.6.0.tgz#48bb5088409f16f1821666641c44dd1aaae3cd88" + integrity sha1-SLtQiECfFvGCFmZkHETdGqrjzYg= + +lodash.uniq@~4.5.0: + version "4.5.0" + resolved "http://nexus.51trust.net/repository/npm-group/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" + integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= + +lodash.without@~4.4.0: + version "4.4.0" + resolved "http://nexus.51trust.net/repository/npm-group/lodash.without/-/lodash.without-4.4.0.tgz#3cd4574a00b67bae373a94b748772640507b7aac" + integrity sha1-PNRXSgC2e643OpS3SHcmQFB7eqw= + +lodash@4.17.4: + version "4.17.4" + resolved "http://nexus.51trust.net/repository/npm-group/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" + integrity sha1-eCA6TRwyiuHYbcpkYONptX9AVa4= + +lodash@^4.17.14: + version "4.17.21" + resolved "http://nexus.51trust.net/repository/npm-group/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw= + +lowercase-keys@^1.0.0: + version "1.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" + integrity sha1-b54wtHCE2XGnyCD/FabFFnt0wm8= + +lru-cache@^4.0.1, lru-cache@^4.1.1, lru-cache@~4.1.1: + version "4.1.5" + resolved "http://nexus.51trust.net/repository/npm-group/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" + integrity sha1-i75Q6oW+1ZvJ4z3KuCNe6bz0Q80= + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + +lru-cache@~4.0.1: + version "4.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" + integrity sha1-HRdnnAac2l0ECZGgnbwsDbN35V4= + dependencies: + pseudomap "^1.0.1" + yallist "^2.0.0" + +make-dir@^1.0.0: + version "1.3.0" + resolved "http://nexus.51trust.net/repository/npm-group/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" + integrity sha1-ecEDO4BRW9bSTsmTPoYMp17ifww= + dependencies: + pify "^3.0.0" + +make-fetch-happen@^2.4.13: + version "2.6.0" + resolved "http://nexus.51trust.net/repository/npm-group/make-fetch-happen/-/make-fetch-happen-2.6.0.tgz#8474aa52198f6b1ae4f3094c04e8370d35ea8a38" + integrity sha1-hHSqUhmPaxrk8wlMBOg3DTXqijg= + dependencies: + agentkeepalive "^3.3.0" + cacache "^10.0.0" + http-cache-semantics "^3.8.0" + http-proxy-agent "^2.0.0" + https-proxy-agent "^2.1.0" + lru-cache "^4.1.1" + mississippi "^1.2.0" + node-fetch-npm "^2.0.2" + promise-retry "^1.1.1" + socks-proxy-agent "^3.0.1" + ssri "^5.0.0" + +mime-db@1.47.0: + version "1.47.0" + resolved "http://nexus.51trust.net/repository/npm-group/mime-db/-/mime-db-1.47.0.tgz#8cb313e59965d3c05cfbf898915a267af46a335c" + integrity sha1-jLMT5Zll08Bc+/iYkVomevRqM1w= + +mime-types@^2.1.11, mime-types@^2.1.12, mime-types@~2.1.19, mime-types@~2.1.7: + version "2.1.30" + resolved "http://nexus.51trust.net/repository/npm-group/mime-types/-/mime-types-2.1.30.tgz#6e7be8b4c479825f85ed6326695db73f9305d62d" + integrity sha1-bnvotMR5gl+F7WMmaV23P5MF1i0= + dependencies: + mime-db "1.47.0" + +minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4, minimatch@~3.0.3: + version "3.0.4" + resolved "http://nexus.51trust.net/repository/npm-group/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + integrity sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM= + dependencies: + brace-expansion "^1.1.7" + +minimist@^1.2.0, minimist@^1.2.5: + version "1.2.5" + resolved "http://nexus.51trust.net/repository/npm-group/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" + integrity sha1-Z9ZgFLZqaoqqDAg8X9WN9OTpdgI= + +minimist@~0.0.1: + version "0.0.10" + resolved "http://nexus.51trust.net/repository/npm-group/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" + integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= + +mississippi@^1.2.0, mississippi@^1.3.0, mississippi@~1.3.0: + version "1.3.1" + resolved "http://nexus.51trust.net/repository/npm-group/mississippi/-/mississippi-1.3.1.tgz#2a8bb465e86550ac8b36a7b6f45599171d78671e" + integrity sha1-Kou0ZehlUKyLNqe29FWZFx14Zx4= + dependencies: + 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 "^1.0.0" + pumpify "^1.3.3" + stream-each "^1.1.0" + through2 "^2.0.0" + +mississippi@^2.0.0: + version "2.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/mississippi/-/mississippi-2.0.0.tgz#3442a508fafc28500486feea99409676e4ee5a6f" + integrity sha1-NEKlCPr8KFAEhv7qmUCWduTuWm8= + dependencies: + 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 "^2.0.1" + pumpify "^1.3.3" + stream-each "^1.1.0" + through2 "^2.0.0" + +"mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: + version "0.5.5" + resolved "http://nexus.51trust.net/repository/npm-group/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" + integrity sha1-2Rzv1i0UNsoPQWIOJRKI1CAJne8= + dependencies: + minimist "^1.2.5" + +move-concurrently@^1.0.1, move-concurrently@~1.0.1: + version "1.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" + integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I= + dependencies: + 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" + +ms@2.0.0: + version "2.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= + +ms@^2.0.0, ms@^2.1.1: + version "2.1.3" + resolved "http://nexus.51trust.net/repository/npm-group/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha1-V0yBOM4dK1hh8LRFedut1gxmFbI= + +mute-stream@~0.0.4: + version "0.0.8" + resolved "http://nexus.51trust.net/repository/npm-group/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + integrity sha1-FjDEKyJR/4HiooPelqVJfqkuXg0= + +node-fetch-npm@^2.0.2: + version "2.0.4" + resolved "http://nexus.51trust.net/repository/npm-group/node-fetch-npm/-/node-fetch-npm-2.0.4.tgz#6507d0e17a9ec0be3bec516958a497cec54bf5a4" + integrity sha1-ZQfQ4XqewL477FFpWKSXzsVL9aQ= + dependencies: + encoding "^0.1.11" + json-parse-better-errors "^1.0.0" + safe-buffer "^5.1.1" + +node-gyp@~3.6.0, node-gyp@~3.6.2: + version "3.6.3" + resolved "http://nexus.51trust.net/repository/npm-group/node-gyp/-/node-gyp-3.6.3.tgz#369fcb09146ae2167f25d8d23d8b49cc1a110d8d" + integrity sha1-Np/LCRRq4hZ/JdjSPYtJzBoRDY0= + dependencies: + fstream "^1.0.0" + glob "^7.0.3" + graceful-fs "^4.1.2" + minimatch "^3.0.2" + mkdirp "^0.5.0" + nopt "2 || 3" + npmlog "0 || 1 || 2 || 3 || 4" + osenv "0" + request ">=2.9.0 <2.82.0" + rimraf "2" + semver "~5.3.0" + tar "^2.0.0" + which "1" + +node-uuid@~1.4.7: + version "1.4.8" + resolved "http://nexus.51trust.net/repository/npm-group/node-uuid/-/node-uuid-1.4.8.tgz#b040eb0923968afabf8d32fb1f17f1167fdab907" + integrity sha1-sEDrCSOWivq/jTL7HxfxFn/auQc= + +"nopt@2 || 3", nopt@~3.0.6: + version "3.0.6" + resolved "http://nexus.51trust.net/repository/npm-group/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" + integrity sha1-xkZdvwirzU2zWTF/eaxopkayj/k= + dependencies: + abbrev "1" + +nopt@~4.0.1: + version "4.0.3" + resolved "http://nexus.51trust.net/repository/npm-group/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" + integrity sha1-o3XK2dAv2SEnjZVMIlTVqlfhXkg= + dependencies: + abbrev "1" + osenv "^0.1.4" + +normalize-git-url@~3.0.2: + version "3.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/normalize-git-url/-/normalize-git-url-3.0.2.tgz#8e5f14be0bdaedb73e07200310aa416c27350fc4" + integrity sha1-jl8Uvgva7bc+ByADEKpBbCc1D8Q= + +normalize-package-data@^2.0.0, normalize-package-data@^2.4.0, "normalize-package-data@~1.0.1 || ^2.0.0": + version "2.5.0" + resolved "http://nexus.51trust.net/repository/npm-group/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha1-5m2xg4sgDB38IzIl0SyzZSDiNKg= + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-package-data@~2.3.5: + version "2.3.8" + resolved "http://nexus.51trust.net/repository/npm-group/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" + integrity sha1-2Bntoqne29H/pWPqQHHZNngilbs= + dependencies: + hosted-git-info "^2.1.4" + is-builtin-module "^1.0.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-package-data@~2.4.0: + version "2.4.2" + resolved "http://nexus.51trust.net/repository/npm-group/normalize-package-data/-/normalize-package-data-2.4.2.tgz#6b2abd85774e51f7936f1395e45acb905dc849b2" + integrity sha1-ayq9hXdOUfeTbxOV5FrLkF3ISbI= + dependencies: + hosted-git-info "^2.1.4" + is-builtin-module "^1.0.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +npm-cache-filename@~1.0.2: + version "1.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/npm-cache-filename/-/npm-cache-filename-1.0.2.tgz#ded306c5b0bfc870a9e9faf823bc5f283e05ae11" + integrity sha1-3tMGxbC/yHCp6fr4I7xfKD4FrhE= + +npm-install-checks@~1.0.7: + version "1.0.7" + resolved "http://nexus.51trust.net/repository/npm-group/npm-install-checks/-/npm-install-checks-1.0.7.tgz#6d91aeda0ac96801f1ed7aadee116a6c0a086a57" + integrity sha1-bZGu2grJaAHx7Xqt7hFqbAoIalc= + dependencies: + npmlog "0.1 || 1 || 2" + semver "^2.3.0 || 3.x || 4 || 5" + +npm-install-checks@~3.0.0: + version "3.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/npm-install-checks/-/npm-install-checks-3.0.2.tgz#ab2e32ad27baa46720706908e5b14c1852de44d9" + integrity sha1-qy4yrSe6pGcgcGkI5bFMGFLeRNk= + dependencies: + semver "^2.3.0 || 3.x || 4 || 5" + +npm-normalize-package-bin@^1.0.0: + version "1.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" + integrity sha1-bnmkHyP9I1wGIyGCKNp9nCO49uI= + +"npm-package-arg@^3.0.0 || ^4.0.0", npm-package-arg@^4.1.1: + version "4.2.1" + resolved "http://nexus.51trust.net/repository/npm-group/npm-package-arg/-/npm-package-arg-4.2.1.tgz#593303fdea85f7c422775f17f9eb7670f680e3ec" + integrity sha1-WTMD/eqF98Qid18X+et2cPaA4+w= + dependencies: + hosted-git-info "^2.1.5" + semver "^5.1.0" + +"npm-package-arg@^3.0.0 || ^4.0.0 || ^5.0.0", "npm-package-arg@^4.0.0 || ^5.0.0", npm-package-arg@^5.1.2, npm-package-arg@~5.1.2: + version "5.1.2" + resolved "http://nexus.51trust.net/repository/npm-group/npm-package-arg/-/npm-package-arg-5.1.2.tgz#fb18d17bb61e60900d6312619919bd753755ab37" + integrity sha1-+xjRe7YeYJANYxJhmRm9dTdVqzc= + dependencies: + hosted-git-info "^2.4.2" + osenv "^0.1.4" + semver "^5.1.0" + validate-npm-package-name "^3.0.0" + +"npm-package-arg@^4.0.0 || ^5.0.0 || ^6.0.0": + version "6.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/npm-package-arg/-/npm-package-arg-6.1.1.tgz#02168cb0a49a2b75bf988a28698de7b529df5cb7" + integrity sha1-AhaMsKSaK3W/mIooaY3ntSnfXLc= + dependencies: + hosted-git-info "^2.7.1" + osenv "^0.1.5" + semver "^5.6.0" + validate-npm-package-name "^3.0.0" + +npm-package-arg@~4.1.0: + version "4.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/npm-package-arg/-/npm-package-arg-4.1.1.tgz#86d9dca985b4c5e5d59772dfd5de6919998a495a" + integrity sha1-htncqYW0xeXVl3Lf1d5pGZmKSVo= + dependencies: + hosted-git-info "^2.1.4" + semver "4 || 5" + +npm-pick-manifest@^1.0.4: + version "1.0.4" + resolved "http://nexus.51trust.net/repository/npm-group/npm-pick-manifest/-/npm-pick-manifest-1.0.4.tgz#a5ee6510c1fe7221c0bc0414e70924c14045f7e8" + integrity sha1-pe5lEMH+ciHAvAQU5wkkwUBF9+g= + dependencies: + npm-package-arg "^5.1.2" + semver "^5.3.0" + +npm-registry-client@~7.2.1: + version "7.2.1" + resolved "http://nexus.51trust.net/repository/npm-group/npm-registry-client/-/npm-registry-client-7.2.1.tgz#c792266b088cc313f8525e7e35248626c723db75" + integrity sha1-x5ImawiMwxP4Ul5+NSSGJscj23U= + dependencies: + concat-stream "^1.5.2" + graceful-fs "^4.1.6" + normalize-package-data "~1.0.1 || ^2.0.0" + npm-package-arg "^3.0.0 || ^4.0.0" + once "^1.3.3" + request "^2.74.0" + retry "^0.10.0" + semver "2 >=2.2.1 || 3.x || 4 || 5" + slide "^1.1.3" + optionalDependencies: + npmlog "~2.0.0 || ~3.1.0" + +npm-registry-client@~8.4.0: + version "8.4.0" + resolved "http://nexus.51trust.net/repository/npm-group/npm-registry-client/-/npm-registry-client-8.4.0.tgz#d52b901685647fc62a4c03eafecb6ceaa5018d4c" + integrity sha1-1SuQFoVkf8YqTAPq/sts6qUBjUw= + dependencies: + concat-stream "^1.5.2" + graceful-fs "^4.1.6" + normalize-package-data "~1.0.1 || ^2.0.0" + npm-package-arg "^3.0.0 || ^4.0.0 || ^5.0.0" + once "^1.3.3" + request "^2.74.0" + retry "^0.10.0" + semver "2 >=2.2.1 || 3.x || 4 || 5" + slide "^1.1.3" + ssri "^4.1.2" + optionalDependencies: + npmlog "2 || ^3.1.0 || ^4.0.0" + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= + dependencies: + path-key "^2.0.0" + +npm-user-validate@~0.1.5: + version "0.1.5" + resolved "http://nexus.51trust.net/repository/npm-group/npm-user-validate/-/npm-user-validate-0.1.5.tgz#52465d50c2d20294a57125b996baedbf56c5004b" + integrity sha1-UkZdUMLSApSlcSW5lrrtv1bFAEs= + +npm-user-validate@~1.0.0: + version "1.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/npm-user-validate/-/npm-user-validate-1.0.1.tgz#31428fc5475fe8416023f178c0ab47935ad8c561" + integrity sha1-MUKPxUdf6EFgI/F4wKtHk1rYxWE= + +npm@5.1.0: + version "5.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/npm/-/npm-5.1.0.tgz#cf8201e044018e9c89532041c90094541982b2c0" + integrity sha1-z4IB4EQBjpyJUyBByQCUVBmCssA= + dependencies: + JSONStream "~1.3.1" + abbrev "~1.1.0" + ansi-regex "~3.0.0" + ansicolors "~0.3.2" + ansistyles "~0.1.3" + aproba "~1.1.2" + archy "~1.0.0" + bluebird "~3.5.0" + cacache "~9.2.9" + call-limit "~1.1.0" + chownr "~1.0.1" + cmd-shim "~2.0.2" + columnify "~1.5.4" + config-chain "~1.1.11" + detect-indent "~5.0.0" + dezalgo "~1.0.3" + editor "~1.0.0" + fs-vacuum "~1.2.10" + fs-write-stream-atomic "~1.0.10" + fstream "~1.0.11" + fstream-npm "~1.2.1" + glob "~7.1.2" + graceful-fs "~4.1.11" + has-unicode "~2.0.1" + hosted-git-info "~2.5.0" + iferr "~0.1.5" + inflight "~1.0.6" + inherits "~2.0.3" + ini "~1.3.4" + init-package-json "~1.10.1" + lazy-property "~1.0.0" + lockfile "~1.0.3" + lodash._baseuniq "~4.6.0" + lodash.clonedeep "~4.5.0" + lodash.union "~4.6.0" + lodash.uniq "~4.5.0" + lodash.without "~4.4.0" + lru-cache "~4.1.1" + mississippi "~1.3.0" + mkdirp "~0.5.1" + move-concurrently "~1.0.1" + node-gyp "~3.6.2" + nopt "~4.0.1" + normalize-package-data "~2.4.0" + npm-cache-filename "~1.0.2" + npm-install-checks "~3.0.0" + npm-package-arg "~5.1.2" + npm-registry-client "~8.4.0" + npm-user-validate "~1.0.0" + npmlog "~4.1.2" + once "~1.4.0" + opener "~1.4.3" + osenv "~0.1.4" + pacote "~2.7.38" + path-is-inside "~1.0.2" + promise-inflight "~1.0.1" + read "~1.0.7" + read-cmd-shim "~1.0.1" + read-installed "~4.0.3" + read-package-json "~2.0.9" + read-package-tree "~5.1.6" + readable-stream "~2.3.2" + request "~2.81.0" + retry "~0.10.1" + rimraf "~2.6.1" + safe-buffer "~5.1.1" + semver "~5.3.0" + sha "~2.0.1" + slide "~1.1.6" + sorted-object "~2.0.1" + sorted-union-stream "~2.1.3" + ssri "~4.1.6" + strip-ansi "~4.0.0" + tar "~2.2.1" + text-table "~0.2.0" + uid-number "0.0.6" + umask "~1.1.0" + unique-filename "~1.1.0" + unpipe "~1.0.0" + update-notifier "~2.2.0" + uuid "~3.1.0" + validate-npm-package-name "~3.0.0" + which "~1.2.14" + worker-farm "~1.3.1" + wrappy "~1.0.2" + write-file-atomic "~2.1.0" + +npm@^2.1.12: + version "2.15.12" + resolved "http://nexus.51trust.net/repository/npm-group/npm/-/npm-2.15.12.tgz#df7c3ed5a277c3f9d4b5d819b05311d10a200ae6" + integrity sha1-33w+1aJ3w/nUtdgZsFMR0QogCuY= + dependencies: + abbrev "~1.0.9" + ansi "~0.3.1" + ansicolors "~0.3.2" + ansistyles "~0.1.3" + archy "~1.0.0" + async-some "~1.0.2" + block-stream "0.0.9" + char-spinner "~1.0.1" + chmodr "~1.0.2" + chownr "~1.0.1" + cmd-shim "~2.0.2" + columnify "~1.5.4" + config-chain "~1.1.10" + dezalgo "~1.0.3" + editor "~1.0.0" + fs-vacuum "~1.2.9" + fs-write-stream-atomic "~1.0.8" + fstream "~1.0.10" + fstream-npm "~1.1.1" + github-url-from-git "~1.4.0" + github-url-from-username-repo "~1.0.2" + glob "~7.0.6" + graceful-fs "~4.1.6" + hosted-git-info "~2.1.5" + inflight "~1.0.4" + inherits "~2.0.3" + ini "~1.3.4" + init-package-json "~1.9.4" + lockfile "~1.0.1" + lru-cache "~4.0.1" + minimatch "~3.0.3" + mkdirp "~0.5.1" + node-gyp "~3.6.0" + nopt "~3.0.6" + normalize-git-url "~3.0.2" + normalize-package-data "~2.3.5" + npm-cache-filename "~1.0.2" + npm-install-checks "~1.0.7" + npm-package-arg "~4.1.0" + npm-registry-client "~7.2.1" + npm-user-validate "~0.1.5" + npmlog "~2.0.4" + once "~1.4.0" + opener "~1.4.1" + osenv "~0.1.3" + path-is-inside "~1.0.0" + read "~1.0.7" + read-installed "~4.0.3" + read-package-json "~2.0.4" + readable-stream "~2.1.5" + realize-package-specifier "~3.0.1" + request "~2.74.0" + retry "~0.10.0" + rimraf "~2.5.4" + semver "~5.1.0" + sha "~2.0.1" + slide "~1.1.6" + sorted-object "~2.0.0" + spdx-license-ids "~1.2.2" + strip-ansi "~3.0.1" + tar "~2.2.1" + text-table "~0.2.0" + uid-number "0.0.6" + umask "~1.1.0" + validate-npm-package-license "~3.0.1" + validate-npm-package-name "~2.2.2" + which "~1.2.11" + wrappy "~1.0.2" + write-file-atomic "~1.1.4" + +npmi@1.0.1: + version "1.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/npmi/-/npmi-1.0.1.tgz#15d769273547545e6809dcf0ce18aed48b0290e2" + integrity sha1-FddpJzVHVF5oCdzwzhiu1IsCkOI= + dependencies: + npm "^2.1.12" + semver "^4.1.0" + +"npmlog@0 || 1 || 2 || 3 || 4", "npmlog@2 || ^3.1.0 || ^4.0.0", npmlog@~4.1.2: + version "4.1.2" + resolved "http://nexus.51trust.net/repository/npm-group/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + integrity sha1-CKfyqL9zRgR3mp76StXMcXq7lUs= + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.7.3" + set-blocking "~2.0.0" + +"npmlog@0.1 || 1 || 2", npmlog@~2.0.4: + version "2.0.4" + resolved "http://nexus.51trust.net/repository/npm-group/npmlog/-/npmlog-2.0.4.tgz#98b52530f2514ca90d09ec5b22c8846722375692" + integrity sha1-mLUlMPJRTKkNCexbIsiEZyI3VpI= + dependencies: + ansi "~0.3.1" + are-we-there-yet "~1.1.2" + gauge "~1.2.5" + +"npmlog@~2.0.0 || ~3.1.0": + version "3.1.2" + resolved "http://nexus.51trust.net/repository/npm-group/npmlog/-/npmlog-3.1.2.tgz#2d46fa874337af9498a2f12bb43d8d0be4a36873" + integrity sha1-LUb6h0M3r5SYovErtD2NC+SjaHM= + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.6.0" + set-blocking "~2.0.0" + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= + +oauth-sign@~0.8.1: + version "0.8.2" + resolved "http://nexus.51trust.net/repository/npm-group/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" + integrity sha1-Rqarfwrq2N6unsBWV4C31O/rnUM= + +oauth-sign@~0.9.0: + version "0.9.0" + resolved "http://nexus.51trust.net/repository/npm-group/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" + integrity sha1-R6ewFrqmi1+g7PPe4IqFxnmsZFU= + +object-assign@^4.1.0: + version "4.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= + +once@^1.3.0, once@^1.3.1, once@^1.3.3, once@^1.4.0, once@~1.4.0: + version "1.4.0" + resolved "http://nexus.51trust.net/repository/npm-group/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + dependencies: + wrappy "1" + +opener@~1.4.1, opener@~1.4.3: + version "1.4.3" + resolved "http://nexus.51trust.net/repository/npm-group/opener/-/opener-1.4.3.tgz#5c6da2c5d7e5831e8ffa3964950f8d6674ac90b8" + integrity sha1-XG2ixdflgx6P+jlklQ+NZnSskLg= + +optimist@0.6.1: + version "0.6.1" + resolved "http://nexus.51trust.net/repository/npm-group/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" + integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY= + dependencies: + minimist "~0.0.1" + wordwrap "~0.0.2" + +os-homedir@^1.0.0: + version "1.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= + +os-tmpdir@^1.0.0, os-tmpdir@~1.0.1: + version "1.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= + +osenv@0, osenv@^0.1.4, osenv@^0.1.5, osenv@~0.1.3, osenv@~0.1.4: + version "0.1.5" + resolved "http://nexus.51trust.net/repository/npm-group/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" + integrity sha1-hc36+uso6Gd/QW4odZK18/SepBA= + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + +p-finally@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= + +package-json@^4.0.0: + version "4.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" + integrity sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0= + dependencies: + got "^6.7.1" + registry-auth-token "^3.0.1" + registry-url "^3.0.3" + semver "^5.1.0" + +pacote@~2.7.38: + version "2.7.38" + resolved "http://nexus.51trust.net/repository/npm-group/pacote/-/pacote-2.7.38.tgz#5091f8774298c26c3eca24606037f1bb73db74c1" + integrity sha1-UJH4d0KYwmw+yiRgYDfxu3PbdME= + dependencies: + bluebird "^3.5.0" + cacache "^9.2.9" + glob "^7.1.2" + lru-cache "^4.1.1" + make-fetch-happen "^2.4.13" + minimatch "^3.0.4" + mississippi "^1.2.0" + normalize-package-data "^2.4.0" + npm-package-arg "^5.1.2" + npm-pick-manifest "^1.0.4" + osenv "^0.1.4" + promise-inflight "^1.0.1" + promise-retry "^1.1.1" + protoduck "^4.0.0" + safe-buffer "^5.1.1" + semver "^5.3.0" + ssri "^4.1.6" + tar-fs "^1.15.3" + tar-stream "^1.5.4" + unique-filename "^1.1.0" + which "^1.2.12" + +parallel-transform@^1.1.0: + version "1.2.0" + resolved "http://nexus.51trust.net/repository/npm-group/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc" + integrity sha1-kEnKN9bLIYLDsdLHIL6U0UpYFPw= + dependencies: + cyclist "^1.0.1" + inherits "^2.0.3" + readable-stream "^2.1.5" + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + +path-is-inside@^1.0.1, path-is-inside@~1.0.0, path-is-inside@~1.0.2: + version "1.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= + +path-key@^2.0.0: + version "2.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= + +path-parse@^1.0.6: + version "1.0.6" + resolved "http://nexus.51trust.net/repository/npm-group/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" + integrity sha1-1i27VnlAXXLEc37FhgDp3c8G0kw= + +performance-now@^0.2.0: + version "0.2.0" + resolved "http://nexus.51trust.net/repository/npm-group/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" + integrity sha1-M+8wxcd9TqIcWlOGnZG1bY8lVeU= + +performance-now@^2.1.0: + version "2.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= + +pify@^3.0.0: + version "3.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= + +pinkie-promise@^2.0.0: + version "2.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" + integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= + dependencies: + pinkie "^2.0.0" + +pinkie@^2.0.0: + version "2.0.4" + resolved "http://nexus.51trust.net/repository/npm-group/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" + integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= + +prepend-http@^1.0.1: + version "1.0.4" + resolved "http://nexus.51trust.net/repository/npm-group/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" + integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= + +process-nextick-args@~1.0.6: + version "1.0.7" + resolved "http://nexus.51trust.net/repository/npm-group/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" + integrity sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M= + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha1-eCDZsWEgzFXKmud5JoCufbptf+I= + +promise-inflight@^1.0.1, promise-inflight@~1.0.1: + version "1.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" + integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= + +promise-retry@^1.1.1: + version "1.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/promise-retry/-/promise-retry-1.1.1.tgz#6739e968e3051da20ce6497fb2b50f6911df3d6d" + integrity sha1-ZznpaOMFHaIM5kl/srUPaRHfPW0= + dependencies: + err-code "^1.0.0" + retry "^0.10.0" + +promzard@^0.3.0: + version "0.3.0" + resolved "http://nexus.51trust.net/repository/npm-group/promzard/-/promzard-0.3.0.tgz#26a5d6ee8c7dee4cb12208305acfb93ba382a9ee" + integrity sha1-JqXW7ox97kyxIggwWs+5O6OCqe4= + dependencies: + read "1" + +proto-list@~1.2.1: + version "1.2.4" + resolved "http://nexus.51trust.net/repository/npm-group/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" + integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk= + +protoduck@^4.0.0: + version "4.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/protoduck/-/protoduck-4.0.0.tgz#fe4874d8c7913366cfd9ead12453a22cd3657f8e" + integrity sha1-/kh02MeRM2bP2erRJFOiLNNlf44= + dependencies: + genfun "^4.0.1" + +prr@~1.0.1: + version "1.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" + integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY= + +pseudomap@^1.0.1, pseudomap@^1.0.2: + version "1.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= + +psl@^1.1.28: + version "1.8.0" + resolved "http://nexus.51trust.net/repository/npm-group/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" + integrity sha1-kyb4vPsBOtzABf3/BWrM4CDlHCQ= + +pump@^1.0.0: + version "1.0.3" + resolved "http://nexus.51trust.net/repository/npm-group/pump/-/pump-1.0.3.tgz#5dfe8311c33bbf6fc18261f9f34702c47c08a954" + integrity sha1-Xf6DEcM7v2/BgmH580cCxHwIqVQ= + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pump@^2.0.0, pump@^2.0.1: + version "2.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" + integrity sha1-Ejma3W5M91Jtlzy8i1zi4pCLOQk= + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pumpify@^1.3.3: + version "1.5.1" + resolved "http://nexus.51trust.net/repository/npm-group/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" + integrity sha1-NlE74karJ1cLGjdKXOJ4v9dDcM4= + dependencies: + duplexify "^3.6.0" + inherits "^2.0.3" + pump "^2.0.0" + +punycode@^1.4.1: + version "1.4.1" + resolved "http://nexus.51trust.net/repository/npm-group/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= + +punycode@^2.1.0, punycode@^2.1.1: + version "2.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha1-tYsBCsQMIsVldhbI0sLALHv0eew= + +q@1.5.0: + version "1.5.0" + resolved "http://nexus.51trust.net/repository/npm-group/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" + integrity sha1-3QG6ydBtMObyGa7LglPunr3DCPE= + +qs@~6.2.0: + version "6.2.3" + resolved "http://nexus.51trust.net/repository/npm-group/qs/-/qs-6.2.3.tgz#1cfcb25c10a9b2b483053ff39f5dfc9233908cfe" + integrity sha1-HPyyXBCpsrSDBT/zn138kjOQjP4= + +qs@~6.4.0: + version "6.4.0" + resolved "http://nexus.51trust.net/repository/npm-group/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" + integrity sha1-E+JtKK1rD/qpExLNO/cI7TUecjM= + +qs@~6.5.2: + version "6.5.2" + resolved "http://nexus.51trust.net/repository/npm-group/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" + integrity sha1-yzroBuh0BERYTvFUzo7pjUA/PjY= + +rc@^1.0.1, rc@^1.1.6: + version "1.2.8" + resolved "http://nexus.51trust.net/repository/npm-group/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + integrity sha1-zZJL9SAKB1uDwYjNa54hG3/A0+0= + dependencies: + deep-extend "^0.6.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +read-cmd-shim@~1.0.1: + version "1.0.5" + resolved "http://nexus.51trust.net/repository/npm-group/read-cmd-shim/-/read-cmd-shim-1.0.5.tgz#87e43eba50098ba5a32d0ceb583ab8e43b961c16" + integrity sha1-h+Q+ulAJi6WjLQzrWDq45DuWHBY= + dependencies: + graceful-fs "^4.1.2" + +read-installed@~4.0.3: + version "4.0.3" + resolved "http://nexus.51trust.net/repository/npm-group/read-installed/-/read-installed-4.0.3.tgz#ff9b8b67f187d1e4c29b9feb31f6b223acd19067" + integrity sha1-/5uLZ/GH0eTCm5/rMfayI6zRkGc= + dependencies: + debuglog "^1.0.1" + 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" + optionalDependencies: + graceful-fs "^4.1.2" + +"read-package-json@1 || 2", read-package-json@^2.0.0: + version "2.1.2" + resolved "http://nexus.51trust.net/repository/npm-group/read-package-json/-/read-package-json-2.1.2.tgz#6992b2b66c7177259feb8eaac73c3acd28b9222a" + integrity sha1-aZKytmxxdyWf646qxzw6zSi5Iio= + dependencies: + glob "^7.1.1" + json-parse-even-better-errors "^2.3.0" + normalize-package-data "^2.0.0" + npm-normalize-package-bin "^1.0.0" + +read-package-json@~2.0.4, read-package-json@~2.0.9: + version "2.0.13" + resolved "http://nexus.51trust.net/repository/npm-group/read-package-json/-/read-package-json-2.0.13.tgz#2e82ebd9f613baa6d2ebe3aa72cefe3f68e41f4a" + integrity sha1-LoLr2fYTuqbS6+Oqcs7+P2jkH0o= + dependencies: + glob "^7.1.1" + json-parse-better-errors "^1.0.1" + normalize-package-data "^2.0.0" + slash "^1.0.0" + optionalDependencies: + graceful-fs "^4.1.2" + +read-package-tree@~5.1.6: + version "5.1.6" + resolved "http://nexus.51trust.net/repository/npm-group/read-package-tree/-/read-package-tree-5.1.6.tgz#4f03e83d0486856fb60d97c94882841c2a7b1b7a" + integrity sha1-TwPoPQSGhW+2DZfJSIKEHCp7G3o= + dependencies: + debuglog "^1.0.1" + dezalgo "^1.0.0" + once "^1.3.0" + read-package-json "^2.0.0" + readdir-scoped-modules "^1.0.0" + +read@1, read@~1.0.1, read@~1.0.7: + version "1.0.7" + resolved "http://nexus.51trust.net/repository/npm-group/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" + integrity sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ= + dependencies: + mute-stream "~0.0.4" + +"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.2, readable-stream@~2.3.6: + version "2.3.7" + resolved "http://nexus.51trust.net/repository/npm-group/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" + integrity sha1-Hsoc9xGu+BTAT2IlKjamL2yyO1c= + dependencies: + 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" + +readable-stream@~1.1.10: + version "1.1.14" + resolved "http://nexus.51trust.net/repository/npm-group/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" + integrity sha1-fPTFTvZI44EwhMY23SB54WbAgdk= + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + +readable-stream@~2.0.5: + version "2.0.6" + resolved "http://nexus.51trust.net/repository/npm-group/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" + integrity sha1-j5A0HmilPMySh4jaz80Rs265t44= + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + string_decoder "~0.10.x" + util-deprecate "~1.0.1" + +readable-stream@~2.1.5: + version "2.1.5" + resolved "http://nexus.51trust.net/repository/npm-group/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" + integrity sha1-ZvqLcg4UOLNkaB8q0aY8YYRIydA= + dependencies: + buffer-shims "^1.0.0" + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + string_decoder "~0.10.x" + util-deprecate "~1.0.1" + +readdir-scoped-modules@^1.0.0: + version "1.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz#8d45407b4f870a0dcaebc0e28670d18e74514309" + integrity sha1-jUVAe0+HCg3K68DihnDRjnRRQwk= + dependencies: + debuglog "^1.0.1" + dezalgo "^1.0.0" + graceful-fs "^4.1.2" + once "^1.3.0" + +realize-package-specifier@~3.0.1: + version "3.0.3" + resolved "http://nexus.51trust.net/repository/npm-group/realize-package-specifier/-/realize-package-specifier-3.0.3.tgz#d0def882952b8de3f67eba5e91199661271f41f4" + integrity sha1-0N74gpUrjeP2frpekRmWYScfQfQ= + dependencies: + dezalgo "^1.0.1" + npm-package-arg "^4.1.1" + +registry-auth-token@^3.0.1: + version "3.4.0" + resolved "http://nexus.51trust.net/repository/npm-group/registry-auth-token/-/registry-auth-token-3.4.0.tgz#d7446815433f5d5ed6431cd5dca21048f66b397e" + integrity sha1-10RoFUM/XV7WQxzV3KIQSPZrOX4= + dependencies: + rc "^1.1.6" + safe-buffer "^5.0.1" + +registry-url@^3.0.3: + version "3.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" + integrity sha1-PU74cPc93h138M+aOBQyRE4XSUI= + dependencies: + rc "^1.0.1" + +"request@>=2.9.0 <2.82.0", request@~2.81.0: + version "2.81.0" + resolved "http://nexus.51trust.net/repository/npm-group/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" + integrity sha1-xpKJRqDgbF+Nb4qTM0af/aRimKA= + dependencies: + aws-sign2 "~0.6.0" + aws4 "^1.2.1" + caseless "~0.12.0" + combined-stream "~1.0.5" + extend "~3.0.0" + forever-agent "~0.6.1" + form-data "~2.1.1" + har-validator "~4.2.1" + hawk "~3.1.3" + http-signature "~1.1.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.7" + oauth-sign "~0.8.1" + performance-now "^0.2.0" + qs "~6.4.0" + safe-buffer "^5.0.1" + stringstream "~0.0.4" + tough-cookie "~2.3.0" + tunnel-agent "^0.6.0" + uuid "^3.0.0" + +request@^2.74.0: + version "2.88.2" + resolved "http://nexus.51trust.net/repository/npm-group/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" + integrity sha1-1zyRhzHLWofaBH4gcjQUb2ZNErM= + 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.3" + 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.5.0" + tunnel-agent "^0.6.0" + uuid "^3.3.2" + +request@~2.74.0: + version "2.74.0" + resolved "http://nexus.51trust.net/repository/npm-group/request/-/request-2.74.0.tgz#7693ca768bbb0ea5c8ce08c084a45efa05b892ab" + integrity sha1-dpPKdou7DqXIzgjAhKRe+gW4kqs= + dependencies: + aws-sign2 "~0.6.0" + aws4 "^1.2.1" + bl "~1.1.2" + caseless "~0.11.0" + combined-stream "~1.0.5" + extend "~3.0.0" + forever-agent "~0.6.1" + form-data "~1.0.0-rc4" + har-validator "~2.0.6" + hawk "~3.1.3" + http-signature "~1.1.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.7" + node-uuid "~1.4.7" + oauth-sign "~0.8.1" + qs "~6.2.0" + stringstream "~0.0.4" + tough-cookie "~2.3.0" + tunnel-agent "~0.4.1" + +resolve@^1.10.0: + version "1.20.0" + resolved "http://nexus.51trust.net/repository/npm-group/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" + integrity sha1-YpoBP7P3B1XW8LeTXMHCxTeLGXU= + dependencies: + is-core-module "^2.2.0" + path-parse "^1.0.6" + +retry@^0.10.0, retry@~0.10.0, retry@~0.10.1: + version "0.10.1" + resolved "http://nexus.51trust.net/repository/npm-group/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" + integrity sha1-52OI0heZLCUnUCQdPTlW/tmNj/Q= + +rimraf@2, rimraf@^2.5.2, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2: + version "2.7.1" + resolved "http://nexus.51trust.net/repository/npm-group/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" + integrity sha1-NXl/E6f9rcVmFCwp1PB8ytSD4+w= + dependencies: + glob "^7.1.3" + +rimraf@~2.5.4: + version "2.5.4" + resolved "http://nexus.51trust.net/repository/npm-group/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" + integrity sha1-loAAk8vxoMhr2VtGJUZ1NcKd+gQ= + dependencies: + glob "^7.0.5" + +rimraf@~2.6.1: + version "2.6.3" + resolved "http://nexus.51trust.net/repository/npm-group/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha1-stEE/g2Psnz54KHNqCYt04M8bKs= + dependencies: + glob "^7.1.3" + +run-queue@^1.0.0, run-queue@^1.0.3: + version "1.0.3" + resolved "http://nexus.51trust.net/repository/npm-group/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" + integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec= + dependencies: + aproba "^1.1.1" + +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2: + version "5.2.1" + resolved "http://nexus.51trust.net/repository/npm-group/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY= + +safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "http://nexus.51trust.net/repository/npm-group/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha1-mR7GnSluAxN0fVm9/St0XDX4go0= + +"safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: + version "2.1.2" + resolved "http://nexus.51trust.net/repository/npm-group/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo= + +semver-diff@^2.0.0: + version "2.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" + integrity sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY= + dependencies: + semver "^5.0.3" + +"semver@2 >=2.2.1 || 3.x || 4 || 5", "semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", "semver@4 || 5", "semver@^2.3.0 || 3.x || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.6.0: + version "5.7.1" + resolved "http://nexus.51trust.net/repository/npm-group/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha1-qVT5Ma66UI0we78Gnv8MAclhFvc= + +semver@5.3.0, semver@~5.3.0: + version "5.3.0" + resolved "http://nexus.51trust.net/repository/npm-group/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" + integrity sha1-myzl094C0XxgEq0yaqa00M9U+U8= + +semver@^4.1.0: + version "4.3.6" + resolved "http://nexus.51trust.net/repository/npm-group/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" + integrity sha1-MAvG4OhjdPe6YQaLWx7NV/xlMto= + +semver@~5.1.0: + version "5.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/semver/-/semver-5.1.1.tgz#a3292a373e6f3e0798da0b20641b9a9c5bc47e19" + integrity sha1-oykqNz5vPgeY2gsgZBuanFvEfhk= + +set-blocking@~2.0.0: + version "2.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= + +sha@~2.0.1: + version "2.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/sha/-/sha-2.0.1.tgz#6030822fbd2c9823949f8f72ed6411ee5cf25aae" + integrity sha1-YDCCL70smCOUn49y7WQR7lzyWq4= + dependencies: + graceful-fs "^4.1.2" + readable-stream "^2.0.2" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "http://nexus.51trust.net/repository/npm-group/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= + dependencies: + shebang-regex "^1.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= + +signal-exit@^3.0.0, signal-exit@^3.0.2: + version "3.0.3" + resolved "http://nexus.51trust.net/repository/npm-group/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" + integrity sha1-oUEMLt2PB3sItOJTyOrPyvBXRhw= + +slash@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" + integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU= + +slide@^1.1.3, slide@^1.1.5, slide@~1.1.3, slide@~1.1.6: + version "1.1.6" + resolved "http://nexus.51trust.net/repository/npm-group/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" + integrity sha1-VusCfWW00tzmyy4tMsTUr8nh1wc= + +smart-buffer@^1.0.13: + version "1.1.15" + resolved "http://nexus.51trust.net/repository/npm-group/smart-buffer/-/smart-buffer-1.1.15.tgz#7f114b5b65fab3e2a35aa775bb12f0d1c649bf16" + integrity sha1-fxFLW2X6s+KjWqd1uxLw0cZJvxY= + +sntp@1.x.x: + version "1.0.9" + resolved "http://nexus.51trust.net/repository/npm-group/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" + integrity sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg= + dependencies: + hoek "2.x.x" + +socks-proxy-agent@^3.0.1: + version "3.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/socks-proxy-agent/-/socks-proxy-agent-3.0.1.tgz#2eae7cf8e2a82d34565761539a7f9718c5617659" + integrity sha1-Lq58+OKoLTRWV2FTmn+XGMVhdlk= + dependencies: + agent-base "^4.1.0" + socks "^1.1.10" + +socks@^1.1.10: + version "1.1.10" + resolved "http://nexus.51trust.net/repository/npm-group/socks/-/socks-1.1.10.tgz#5b8b7fc7c8f341c53ed056e929b7bf4de8ba7b5a" + integrity sha1-W4t/x8jzQcU+0FbpKbe/Tei6e1o= + dependencies: + ip "^1.1.4" + smart-buffer "^1.0.13" + +sorted-object@~2.0.0, sorted-object@~2.0.1: + version "2.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/sorted-object/-/sorted-object-2.0.1.tgz#7d631f4bd3a798a24af1dffcfbfe83337a5df5fc" + integrity sha1-fWMfS9OnmKJK8d/8+/6DM3pd9fw= + +sorted-union-stream@~2.1.3: + version "2.1.3" + resolved "http://nexus.51trust.net/repository/npm-group/sorted-union-stream/-/sorted-union-stream-2.1.3.tgz#c7794c7e077880052ff71a8d4a2dbb4a9a638ac7" + integrity sha1-x3lMfgd4gAUv9xqNSi27Sppjisc= + dependencies: + from2 "^1.3.0" + stream-iterate "^1.1.0" + +spdx-correct@^3.0.0: + version "3.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" + integrity sha1-3s6BrJweZxPl99G28X1Gj6U9iak= + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.3.0" + resolved "http://nexus.51trust.net/repository/npm-group/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" + integrity sha1-PyjOGnegA3JoPq3kpDMYNSeiFj0= + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha1-z3D1BILu/cmOPOCmgz5KU87rpnk= + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.7" + resolved "http://nexus.51trust.net/repository/npm-group/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz#e9c18a410e5ed7e12442a549fbd8afa767038d65" + integrity sha1-6cGKQQ5e1+EkQqVJ+9ivp2cDjWU= + +spdx-license-ids@~1.2.2: + version "1.2.2" + resolved "http://nexus.51trust.net/repository/npm-group/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" + integrity sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc= + +sshpk@^1.7.0: + version "1.16.1" + resolved "http://nexus.51trust.net/repository/npm-group/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" + integrity sha1-+2YcC+8ps520B2nuOfpwCT1vaHc= + dependencies: + 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@^4.1.2, ssri@^4.1.6, ssri@~4.1.6: + version "4.1.6" + resolved "http://nexus.51trust.net/repository/npm-group/ssri/-/ssri-4.1.6.tgz#0cb49b6ac84457e7bdd466cb730c3cb623e9a25b" + integrity sha1-DLSbashEV+e91GbLcww8tiPpols= + dependencies: + safe-buffer "^5.1.0" + +ssri@^5.0.0, ssri@^5.2.4: + version "5.3.0" + resolved "http://nexus.51trust.net/repository/npm-group/ssri/-/ssri-5.3.0.tgz#ba3872c9c6d33a0704a7d71ff045e5ec48999d06" + integrity sha1-ujhyycbTOgcEp9cf8EXl7EiZnQY= + dependencies: + safe-buffer "^5.1.1" + +stream-each@^1.1.0: + version "1.2.3" + resolved "http://nexus.51trust.net/repository/npm-group/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae" + integrity sha1-6+J6DDibBPvMIzZClS4Qcxr6m64= + dependencies: + end-of-stream "^1.1.0" + stream-shift "^1.0.0" + +stream-iterate@^1.1.0: + version "1.2.0" + resolved "http://nexus.51trust.net/repository/npm-group/stream-iterate/-/stream-iterate-1.2.0.tgz#2bd7c77296c1702a46488b8ad41f79865eecd4e1" + integrity sha1-K9fHcpbBcCpGSIuK1B95hl7s1OE= + dependencies: + readable-stream "^2.1.5" + stream-shift "^1.0.0" + +stream-shift@^1.0.0: + version "1.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" + integrity sha1-1wiCgVWasneEJCebCHfaPDktWj0= + +string-width@^1.0.1: + version "1.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1: + version "2.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + integrity sha1-q5Pyeo3BPSjKyBXEYhQ6bZASrp4= + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string_decoder@~0.10.x: + version "0.10.31" + resolved "http://nexus.51trust.net/repository/npm-group/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" + integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= + +string_decoder@~1.1.1: + version "1.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha1-nPFhG6YmhdcDCunkujQUnDrwP8g= + dependencies: + safe-buffer "~5.1.0" + +stringstream@~0.0.4: + version "0.0.6" + resolved "http://nexus.51trust.net/repository/npm-group/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72" + integrity sha1-eIAiWw1K0Q4wkn0Weh1vL9OzOnI= + +strip-ansi@^3.0.0, strip-ansi@^3.0.1, strip-ansi@~3.0.1: + version "3.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^4.0.0, strip-ansi@~4.0.0: + version "4.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= + dependencies: + ansi-regex "^3.0.0" + +strip-eof@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= + +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= + +supports-color@^2.0.0: + version "2.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= + +supports-color@^5.3.0: + version "5.5.0" + resolved "http://nexus.51trust.net/repository/npm-group/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha1-4uaaRKyHcveKHsCzW2id9lMO/I8= + dependencies: + has-flag "^3.0.0" + +tar-fs@^1.15.3: + version "1.16.3" + resolved "http://nexus.51trust.net/repository/npm-group/tar-fs/-/tar-fs-1.16.3.tgz#966a628841da2c4010406a82167cbd5e0c72d509" + integrity sha1-lmpiiEHaLEAQQGqCFny9Xgxy1Qk= + dependencies: + chownr "^1.0.1" + mkdirp "^0.5.1" + pump "^1.0.0" + tar-stream "^1.1.2" + +tar-stream@^1.1.2, tar-stream@^1.5.4: + version "1.6.2" + resolved "http://nexus.51trust.net/repository/npm-group/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555" + integrity sha1-jqVdqzeXIlPZqa+Q/c1VmuQ1xVU= + dependencies: + bl "^1.0.0" + buffer-alloc "^1.2.0" + end-of-stream "^1.0.0" + fs-constants "^1.0.0" + readable-stream "^2.3.0" + to-buffer "^1.1.1" + xtend "^4.0.0" + +tar@^2.0.0, tar@~2.2.1: + version "2.2.2" + resolved "http://nexus.51trust.net/repository/npm-group/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40" + integrity sha1-DKiEhWLHKZuLRG/2pNYM27I+3EA= + dependencies: + block-stream "*" + fstream "^1.0.12" + inherits "2" + +term-size@^1.2.0: + version "1.2.0" + resolved "http://nexus.51trust.net/repository/npm-group/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" + integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk= + dependencies: + execa "^0.7.0" + +text-table@~0.2.0: + version "0.2.0" + resolved "http://nexus.51trust.net/repository/npm-group/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= + +through2@^2.0.0: + version "2.0.5" + resolved "http://nexus.51trust.net/repository/npm-group/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + integrity sha1-AcHjnrMdB8t9A6lqcIIyYLIxMs0= + dependencies: + readable-stream "~2.3.6" + xtend "~4.0.1" + +"through@>=2.2.7 <3": + version "2.3.8" + resolved "http://nexus.51trust.net/repository/npm-group/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= + +timed-out@^4.0.0: + version "4.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" + integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8= + +tmp@0.0.31: + version "0.0.31" + resolved "http://nexus.51trust.net/repository/npm-group/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" + integrity sha1-jzirlDjhcxXl29izZX6L+yd65Kc= + dependencies: + os-tmpdir "~1.0.1" + +to-buffer@^1.1.1: + version "1.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80" + integrity sha1-STvUj2LXxD/N7TE6A9ytsuEhOoA= + +tough-cookie@~2.3.0: + version "2.3.4" + resolved "http://nexus.51trust.net/repository/npm-group/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" + integrity sha1-7GDO44rGdQY//JelwYlwV47oNlU= + dependencies: + punycode "^1.4.1" + +tough-cookie@~2.5.0: + version "2.5.0" + resolved "http://nexus.51trust.net/repository/npm-group/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" + integrity sha1-zZ+yoKodWhK0c72fuW+j3P9lreI= + dependencies: + psl "^1.1.28" + punycode "^2.1.1" + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "http://nexus.51trust.net/repository/npm-group/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= + dependencies: + safe-buffer "^5.0.1" + +tunnel-agent@~0.4.1: + version "0.4.3" + resolved "http://nexus.51trust.net/repository/npm-group/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" + integrity sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us= + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "http://nexus.51trust.net/repository/npm-group/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= + +typedarray@^0.0.6: + version "0.0.6" + resolved "http://nexus.51trust.net/repository/npm-group/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= + +uid-number@0.0.6: + version "0.0.6" + resolved "http://nexus.51trust.net/repository/npm-group/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" + integrity sha1-DqEOgDXo61uOREnwbaHHMGY7qoE= + +umask@~1.1.0: + version "1.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/umask/-/umask-1.1.0.tgz#f29cebf01df517912bb58ff9c4e50fde8e33320d" + integrity sha1-8pzr8B31F5ErtY/5xOUP3o4zMg0= + +unique-filename@^1.1.0, unique-filename@~1.1.0: + version "1.1.1" + resolved "http://nexus.51trust.net/repository/npm-group/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" + integrity sha1-HWl2k2mtoFgxA6HmrodoG1ZXMjA= + dependencies: + unique-slug "^2.0.0" + +unique-slug@^2.0.0: + version "2.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" + integrity sha1-uqvOkQg/xk6UWw861hPiZPfNTmw= + dependencies: + imurmurhash "^0.1.4" + +unique-string@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" + integrity sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo= + dependencies: + crypto-random-string "^1.0.0" + +universalify@^0.1.0: + version "0.1.2" + resolved "http://nexus.51trust.net/repository/npm-group/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha1-tkb2m+OULavOzJ1mOcgNwQXvqmY= + +unpipe@~1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= + +unzip-response@^2.0.1: + version "2.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" + integrity sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c= + +update-notifier@~2.2.0: + version "2.2.0" + resolved "http://nexus.51trust.net/repository/npm-group/update-notifier/-/update-notifier-2.2.0.tgz#1b5837cf90c0736d88627732b661c138f86de72f" + integrity sha1-G1g3z5DAc22IYncytmHBOPht5y8= + dependencies: + boxen "^1.0.0" + chalk "^1.0.0" + configstore "^3.0.0" + import-lazy "^2.1.0" + is-npm "^1.0.0" + latest-version "^3.0.0" + semver-diff "^2.0.0" + xdg-basedir "^3.0.0" + +uri-js@^4.2.2: + version "4.4.1" + resolved "http://nexus.51trust.net/repository/npm-group/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha1-mxpSWVIlhZ5V9mnZKPiMbFfyp34= + dependencies: + punycode "^2.1.0" + +url-parse-lax@^1.0.0: + version "1.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" + integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM= + dependencies: + prepend-http "^1.0.1" + +user-home@2.0.0: + version "2.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" + integrity sha1-nHC/2Babwdy/SGBODwS4tJzenp8= + dependencies: + os-homedir "^1.0.0" + +util-deprecate@~1.0.1: + version "1.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= + +util-extend@^1.0.1: + version "1.0.3" + resolved "http://nexus.51trust.net/repository/npm-group/util-extend/-/util-extend-1.0.3.tgz#a7c216d267545169637b3b6edc6ca9119e2ff93f" + integrity sha1-p8IW0mdUUWljeztu3GypEZ4v+T8= + +uuid@^3.0.0, uuid@^3.3.2: + version "3.4.0" + resolved "http://nexus.51trust.net/repository/npm-group/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" + integrity sha1-sj5DWK+oogL+ehAK8fX4g/AgB+4= + +uuid@~3.1.0: + version "3.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" + integrity sha1-PdPT55Crwk17DToDT/q6vijrvAQ= + +validate-npm-package-license@^3.0.1, validate-npm-package-license@~3.0.1: + version "3.0.4" + resolved "http://nexus.51trust.net/repository/npm-group/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha1-/JH2uce6FchX9MssXe/uw51PQQo= + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +validate-npm-package-name@^3.0.0, validate-npm-package-name@~3.0.0: + version "3.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" + integrity sha1-X6kS2B630MdK/BQN5zF/DKffQ34= + dependencies: + builtins "^1.0.3" + +validate-npm-package-name@~2.2.2: + version "2.2.2" + resolved "http://nexus.51trust.net/repository/npm-group/validate-npm-package-name/-/validate-npm-package-name-2.2.2.tgz#f65695b22f7324442019a3c7fa39a6e7fd299085" + integrity sha1-9laVsi9zJEQgGaPH+jmm5/0pkIU= + dependencies: + builtins "0.0.7" + +verror@1.10.0: + version "1.10.0" + resolved "http://nexus.51trust.net/repository/npm-group/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + +wcwidth@^1.0.0: + version "1.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g= + dependencies: + defaults "^1.0.3" + +which@1, which@^1.2.12, which@^1.2.9: + version "1.3.1" + resolved "http://nexus.51trust.net/repository/npm-group/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo= + dependencies: + isexe "^2.0.0" + +which@~1.2.11, which@~1.2.14: + version "1.2.14" + resolved "http://nexus.51trust.net/repository/npm-group/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" + integrity sha1-mofEN48D6CfOyvGs31bHNsAcFOU= + dependencies: + isexe "^2.0.0" + +wide-align@^1.1.0: + version "1.1.3" + resolved "http://nexus.51trust.net/repository/npm-group/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" + integrity sha1-rgdOa9wMFKQx6ATmJFScYzsABFc= + dependencies: + string-width "^1.0.2 || 2" + +widest-line@^2.0.0: + version "2.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" + integrity sha1-dDh2RzDsfvQ4HOTfgvuYpTFCo/w= + dependencies: + string-width "^2.1.1" + +wordwrap@~0.0.2: + version "0.0.3" + resolved "http://nexus.51trust.net/repository/npm-group/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" + integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= + +worker-farm@~1.3.1: + version "1.3.1" + resolved "http://nexus.51trust.net/repository/npm-group/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" + integrity sha1-QzMRK7SbF6oFC4eJXKayys9A5f8= + dependencies: + errno ">=0.1.1 <0.2.0-0" + xtend ">=4.0.0 <4.1.0-0" + +wrappy@1, wrappy@~1.0.2: + version "1.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + +write-file-atomic@^2.0.0: + version "2.4.3" + resolved "http://nexus.51trust.net/repository/npm-group/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" + integrity sha1-H9Lprh3z51uNjDZ0Q8aS1MqB9IE= + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + signal-exit "^3.0.2" + +write-file-atomic@~1.1.4: + version "1.1.4" + resolved "http://nexus.51trust.net/repository/npm-group/write-file-atomic/-/write-file-atomic-1.1.4.tgz#b1f52dc2e8dc0e3cb04d187a25f758a38a90ca3b" + integrity sha1-sfUtwujcDjywTRh6JfdYo4qQyjs= + dependencies: + graceful-fs "^4.1.2" + imurmurhash "^0.1.4" + slide "^1.1.5" + +write-file-atomic@~2.1.0: + version "2.1.0" + resolved "http://nexus.51trust.net/repository/npm-group/write-file-atomic/-/write-file-atomic-2.1.0.tgz#1769f4b551eedce419f0505deae2e26763542d37" + integrity sha1-F2n0tVHu3OQZ8FBd6uLiZ2NULTc= + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + slide "^1.1.5" + +xdg-basedir@^3.0.0: + version "3.0.0" + resolved "http://nexus.51trust.net/repository/npm-group/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" + integrity sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ= + +"xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@~4.0.1: + version "4.0.2" + resolved "http://nexus.51trust.net/repository/npm-group/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha1-u3J3n1+kZRhrH0OPZ0+jR/2121Q= + +y18n@^3.2.1: + version "3.2.2" + resolved "http://nexus.51trust.net/repository/npm-group/y18n/-/y18n-3.2.2.tgz#85c901bd6470ce71fc4bb723ad209b70f7f28696" + integrity sha1-hckBvWRwznH8S7cjrSCbcPfyhpY= + +y18n@^4.0.0: + version "4.0.1" + resolved "http://nexus.51trust.net/repository/npm-group/y18n/-/y18n-4.0.1.tgz#8db2b83c31c5d75099bb890b23f3094891e247d4" + integrity sha1-jbK4PDHF11CZu4kLI/MJSJHiR9Q= + +yallist@^2.0.0, yallist@^2.1.2: + version "2.1.2" + resolved "http://nexus.51trust.net/repository/npm-group/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= diff --git "a/\344\271\246\345\237\216.md" "b/\344\271\246\345\237\216.md" new file mode 100644 index 0000000..5314a90 --- /dev/null +++ "b/\344\271\246\345\237\216.md" @@ -0,0 +1,287 @@ + +# 书城 + +# 分类书籍列表 +某个分类下所有的书籍 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
路径/app/open/api/book/getCategoryId
请求方式GET
参数名称类型必需说明
pageNumInteger请求第几页的数据,pageNum最小值为1
pageSizeInteger请求每页多少条的数据
categoryIdInteger书籍所属的分类号
channelIdInteger某个频道下的分类书籍
orderByString分类书籍排序与筛选规则,不传返回全部书籍默认排序
  • NEWEST : String类型 按照最新的书籍进行排序
  • HOT : String类型 按照最火爆的书籍进行排序
  • END : String类型 筛选已完结的书籍
+ +返回结果 + +|名称|类型|必需|说明| +| ------------ | ------------ | ------------ |------------ | +|`list`| List|否| 分类的书籍列表,每个书籍的定义在[这里](#book) +|`pageNum`| Integer|否| 请求第几页的数据,pageNum最小值为1 +|`pageSize`| Integer|否| 请求每页多少条的数据 +|`total`| Integer|否|总共有多少条数据 + +# 书籍详情 +每本书的详细信息 + + + + + + + + + + + + + + + + + + + + + + + +
路径/app/open/api/book/getDetail
请求方式GET
参数名称类型必需说明
bookIdInteger书籍号
+ +返回结果 + +|名称|类型|必需|说明| +| ------------ | ------------ | ------------ |------------ | +|`author`| String |否| 书籍作者 +|`bookId`| Integer|是| 书籍号 +|`categoryName`| String|是| 书籍所属分类名 +|`chapterNum`| Integer|否|总共有多少章节 +|`coverImg`| String|否|书籍的封面路径,**返回的是书籍封面的路径并非URL地址,需要手动拼接上*域名+端口*参考[这里](#domain)** +|`desc`| String|否|书籍内容介绍 +|`title`| String|否|书籍的名称 +|`update`| Object|否|书籍更新信息包含以下字段
  • `chapterId` : `Long类型` 最新的章节号
  • `chapterName` : `String类型` 最新的章节名称
  • `chapterStatus` : `String类型` 书籍连载状态
    • `END` : `String类型` 书籍已完结
    • `SERIALIZE` : `String类型` 书籍连载中
  • `time` : `Date类型` 书籍最近更新时间
+|`word`| String|否|书籍的字数 +|`recommend`| List|否|相关书籍推荐列表,每个书籍的定义在[这里](#book) + + +# 书籍推荐 +在书籍详情中的推荐列表和换一换 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
路径/app/open/api/book/getRecommend
请求方式GET
参数名称类型必需说明
bookIdInteger书籍号
pageNumInteger请求第几页的数据,pageNum最小值为1
pageSizeInteger请求每页多少条的数据
+ +返回结果 + +|名称|类型|必需|说明| +| ------------ | ------------ | ------------ |------------ | +|`list`| List|否| 书籍推荐列表,每个书籍的定义在[这里](#book) +|`pageNum`| Integer|否| 请求第几页的数据,pageNum最小值为1 +|`pageSize`| Integer|否| 请求每页多少条的数据 +|`total`| Integer|否|当前请求有多少条数据 + +# 书籍目录 +获取书籍全部或部分目录信息,当书籍有更新时需要调用该接口来更新本地保存的目录信息,传入chapterId获取此章节之后的数据,不传chapterId是获取全部目录。如果本地已经保存过目录信息,建议最好传入最后一章chapterId来更新本地目录。而不是全量获取所有的目录。 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
路径/app/open/api/chapter/getByBookId
请求方式GET
参数名称类型必需说明
bookIdInteger书籍号
chapterIdLong从第几章开始请求目录信息,如果不传请求全部的目录信息
+ +返回结果 + +|名称|类型|必需|说明| +| ------------ | ------------ | ------------ |------------ | +|`author`| String|否| 作者 +|`bookId`| Integer|是| 书籍号 +|`coverImg`| String|否| **返回的是书籍封面的路径并非URL地址,需要手动拼接上*域名+端口*参考[这里](#domain)** +|`desc`| String|否|书籍内容介绍 +|`title`| String|否|书籍的名称 +|`word`| String|否|书籍的字数 +|`chapters`|List|书籍的目录列表,每个目录包含以下字段
  • `id` : `Long类型` 章节号
  • `name` : `String类型` 章节名
  • `v` : `Integer类型` **书籍的版本号,非常重要,书籍下载接口`/app/open/api/chapter/get`需要传递这个参数**
+ + +# 书籍章节下载 +下载章节内容,**目前开放接口不支持批量下载** + +由于书源失效会导致部分书籍不可访问。如果错误码为`203`表示书源已经失效,此时服务器会自动更新书源。
+如果书源失效并返回`203`请重新调用书籍目录接口`/app/open/api/chapter/getByBookId`来获取最新的目录信息
+此时当前接口需要传递`v`这个参数,这个参数由`/app/open/api/chapter/getByBookId`接口返回。
+`v`表示当前此书籍的版本。默认为`0`,表示此书籍的书源没有失效过。`1`表示为此书籍的书源更新过一次。
+`/app/open/api/chapter/getByBookId`返回`v=1`,如果当前接口传`v=0`表示从旧书源获取内容,会导致获取内容失败。
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
路径/app/open/api/chapter/get
请求方式POST application/json
参数名称类型必需说明
bookIdInteger下载的书籍号
chapterIdListList<Long>下载的章节号列表
vInteger书籍的版本号
+ +返回结果 + +|名称|类型|必需|说明| +| ------------ | ------------ | ------------ |------------ | +|`list`| List|否| 下载的章节内容,每个章节的字段如下
  • `content` : `String类型` 章节内容
  • `id` : `Long类型` 章节号
  • `name` : `String类型` 章节名
+ + # 章节刷新 + + 刷新章节内容,获取最新的章节数据。与下载不一样,下载是获取服务器缓存的数据,但不是最新的数据。一般是下载的内容不正确时会调用该接口。该接口响应时间比较长,谨慎调用。 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
路径/app/open/api/chapter/updateForce
请求方式POST application/json
参数名称类型必需说明
bookIdInteger更新的书籍号
chapterIdListList<Long>更新的章节号列表
+ +返回结果 + +|名称|类型|必需|说明| +| ------------ | ------------ | ------------ |------------ | +|`list`| List|否| 更新的章节内容,每个章节的字段如下
  • `content` : `String类型` 章节内容
  • `id` : `Long类型` 章节号
  • `name` : `String类型` 章节名
diff --git "a/\344\271\246\346\236\266.md" "b/\344\271\246\346\236\266.md" new file mode 100644 index 0000000..5c64be4 --- /dev/null +++ "b/\344\271\246\346\236\266.md" @@ -0,0 +1,97 @@ +# 书架 + +## 批量检查书籍是否有更新 +下载到本地的书籍在特定时机应该检查书籍是否有更新,使得本地的数据保持最新的状态。一般用于连载书籍检查是否有新章节更新。 + +与[/app/open/api/chapter/getByBookId](#书籍目录)配合使用,来更新本地缓存的目录 + + + + + + + + + + + + + + + + + + + + + + + +
路径/app/open/api/book/checkUpdate
请求方式POST application/json
参数名称类型必需说明
booksList检查更新的书籍列表,每个对象的信息如下
  • bookId : Integer类型 需要检查更新的书籍号
  • chapterId : Long类型 需要检查更新的书籍最后一章的章节号
+ +返回结果 + +|名称|类型|必需|说明| +| ------------ | ------------ | ------------ | ------------ | +|`updateList`| List|否|需要更新的书籍列表,每个对象的信息如下
  • bookId : Integer类型 需要检查更新的书籍号
  • chapterId : Long类型 需要检查更新的书籍最后一章的章节号
+ + +## 搜索书籍 +根据关键词搜索书籍 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
路径/app/open/api/book/search
请求方式GET
参数名称类型必需说明
keyWordString书籍关键词
pageNumInteger请求第几页的数据,pageNum最小值为1
pageSizeInteger请求每页多少条的数据
+ +返回的结果 + +|名称|类型|必需|说明| +| ------------ | ------------ | ------------ |------------ | +|`list`| List|否|搜索的结果书籍列表 +|`pageNum`|Integer|否|请求第几页数据 +|`pageSize`|Integer|否|请求每页多少条的数据 +|`total`|Integer|否|实际返回多少条数据 + +书籍的字段定义如下 + +|名称|类型|必需|说明| +| ------------ | ------------ | ------------ |------------ | +|`author`| String|否|作者 +|`bookId`|Integer|是|书籍号 +|`categoryName`|String|是|书籍所属分类 +|`chapterStatus`|String|否|书籍连载状态
  • `END` : `String类型` 书籍已完结
  • `SERIALIZE` : `String类型` 书籍连载中
+|`coverImg`| String|否|书籍的封面路径,**返回的是书籍封面的路径并非URL地址,需要手动拼接上*域名+端口*参考[这里](#domain)** +|`desc`|String|否|书籍内容介绍 +|`title`|String|否|书籍的名称 +|`word`|String|否|书籍的字数 diff --git "a/\345\205\266\344\273\226.md" "b/\345\205\266\344\273\226.md" new file mode 100644 index 0000000..a28af38 --- /dev/null +++ "b/\345\205\266\344\273\226.md" @@ -0,0 +1,25 @@ +# 其他 + +## 配置接口 + +获取热门搜索,书籍默认分类等配置信息,通常是在每次开机时启动 + + + + + + + + + + + +
路径/app/open/api/system/getAppConfig
请求方式GET
+ + 返回结果 + + |名称|类型|必需|说明| +| ------------ | ------------ | ------------ |------------ | +|`categories`| List|否| 书籍默认的分类列表,每个分类的字段如下
  • `categoryId` : `Integer类型` 分类号
  • `categoryName` : `String类型` 分类名
+|`hotSearch`| List|否| 热搜书籍列表,每个书籍的定义在[这里](#book) + diff --git "a/\345\217\221\347\216\260.md" "b/\345\217\221\347\216\260.md" new file mode 100644 index 0000000..471702a --- /dev/null +++ "b/\345\217\221\347\216\260.md" @@ -0,0 +1,310 @@ + +# 发现 +## 发现页 +App内发现页面接口 + + + + + + + + + +
路径/app/open/api/category/discovery
请求方式GET
+ +返回结果 + +|名称|类型|必需|说明| +| ------------ | ------------ | ------------ |------------ | +|`list`| List|否| 发现页书籍分类列表,列表中每个对象有以下字段
  • `bookList` : `List类型` 书籍列表,每个书籍的定义在[这里](#book)
  • `categoryName` : `String类型` 每个分类的名称
  • `type` : `String类型` 每个分类的类型
    • `READ_MOST` : `String类型` 大家都在看
    • `RECENT_UPDATE` : `String类型` 最近更新
    • `CATEGORY` : `String类型` 书籍分类
  • `categoryId` : `Integer类型` 只有当**type=CATEGORY**时才有值表示书籍分类号
+ +## 分类 + +书籍的全部分类 + + + + + + + + + + +
路径/app/open/api/category/getCategoryChannel
请求方式GET
+ +返回结果 + +|名称|类型|必需|说明| +| ------------ | ------------ | ------------ |------------ | +|`channels`| List|否| 获取所有的频道分类列表,目前有男生频道和女生频道,列表中每个对象包含以下字段
  • `categories` : `List类型` 分类信息列表
  • `channelId` : `Integer类型` 频道号
  • `channelName` : `String类型` 频道名称
+ +分类信息的字段定义如下: + +|名称|类型|必需|说明| +| ------------ | ------------ | ------------ |------------ | +|`categoryId`| Integer |是| 分类号 +|`categoryName`| String|否| 分类名 +|`coverImgs`| List\|否| 分类的封面列表,包含该分类排名前三书籍的封面路径**并非URL地址,需要手动拼接上*域名+端口*参考[这里](#domain)** + +## 榜单 +书籍榜单信息 + + + + + + + + + +
路径/app/open/api/rank/getList
请求方式GET
+ +返回结果 + +|名称|类型|必需|说明| +| ------------ | ------------ | ------------ |------------ | +|`channels`| List|否| 获取所有的频道榜单目前有男生频道和女生频道每个对象包含以下字段
  • `ranks` : `List类型` 榜单信息列表
  • `channelId` : `Integer类型` 频道号
  • `channelName` : `String类型` 频道名称
+ +榜单信息的字段定义如下: + +|名称|类型|必需|说明| +| ------------ | ------------ | ------------ |------------ | +|`rankId`| Integer |是| 榜单号 +|`rankName`| String|否| 榜单名 +|`coverImgs`| List|否| 榜单的封面列表,包含该榜单排名前三书籍的封面路径**并非URL地址,需要手动拼接上*域名+端口*参考[这里](#domain)** + +## 榜单列表 +每个榜单内的书籍列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
路径/app/open/api/rank/getPage
请求方式GET
参数名称类型必需说明
channelIdInteger频道号
rankIdInteger榜单号
pageNumInteger请求第几页的数据,pageNum最小值为1
pageSizeInteger请求每页多少条的数据
+ +返回结果 + +|名称|类型|必需|说明| +| ------------ | ------------ | ------------ |------------ | +|`list`| List|否| 榜单书籍列表,每个书籍的定义在[这里](#book) +|`pageNum`| Integer|否| 请求第几页的数据,pageNum最小值为1 +|`pageSize`| Integer|否| 请求每页多少条的数据 +|`total`| Integer|否|总共有多少条数据 + + +## 完本 +所有完本书籍信息 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
路径/app/open/api/category/getCategoryEnd
请求方式GET
参数名称类型必需说明
pageNumInteger请求第几页的数据,pageNum最小值为1
pageSizeInteger请求每页多少条的数据
+ +返回数据 + +|名称|类型|必需|说明| +| ------------ | ------------ | ------------ |------------ | +|`list`| List|否| 全部完结书籍的分类列表,列表中每个对象有以下字段
  • `bookList` : `List类型` 书籍列表,每个书籍的定义在[这里](#book)
  • `categoryName` : `String类型` 每个分类的名称
  • `categoryId` : `Integer类型` 书籍分类号
+|`pageNum`| Integer|否| 请求第几页的数据,pageNum最小值为1 +|`pageSize`| Integer|否| 请求每页多少条的数据 +|`total`| Integer|否|总共有多少条数据 + +## 专题 +书籍专题信息 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
路径/app/open/api/book/getSpecialList
请求方式GET
参数名称类型必需说明
pageNumInteger请求第几页的数据,pageNum最小值为1
pageSizeInteger请求每页多少条的数据
+ +返回结果 + +|名称|类型|必需|说明| +| ------------ | ------------ | ------------ |------------ | +|`specialList`| List|否| 全部的专题列表,列表中每个对象有以下字段
  • `bookList` : `List类型` 书籍列表,每个书籍的定义在[这里](#book)
  • `name` : `String类型` 每个专题的名称
  • `id` : `Integer类型` 专题号
+ +## 专题列表 +专题下全部的书籍和换一换列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
路径/app/open/api/book/getSpecialPage
请求方式GET
参数名称类型必需说明
idInteger专题号
pageNumInteger请求第几页的数据,pageNum最小值为1
pageSizeInteger请求每页多少条的数据
+ +返回结果 + +|名称|类型|必需|说明| +| ------------ | ------------ | ------------ |------------ | +|`list`| List|否| 专题的书籍列表,每个书籍的定义在[这里](#book) +|`pageNum`| Integer|否| 请求第几页的数据,pageNum最小值为1 +|`pageSize`| Integer|否| 请求每页多少条的数据 +|`total`| Integer|否|总共有多少条数据 + +## 发现页查看全部 + +查看发现页分类的全部或部分内容(查看全部,换一换) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
路径/app/open/api/category/discoveryAll
请求方式GET
参数名称类型必需说明
pageNumInteger请求第几页的数据,pageNum最小值为1
pageSizeInteger请求每页多少条的数据
typeString发现页的分类类型
  • READ_MOST : String类型 大家都在看
  • RECENT_UPDATE : String类型 最近更新
  • CATEGORY : String类型 书籍分类
categoryIdInteger书籍分类号,仅当type=CATEGORY有效
+ +返回结果 + +|名称|类型|必需|说明| +| ------------ | ------------ | ------------ |------------ | +|`list`| List|否| 发现页某个分类的书籍列表,每个书籍的定义在[这里](#book) +|`pageNum`| Integer|否| 请求第几页的数据,pageNum最小值为1 +|`pageSize`| Integer|否| 请求每页多少条的数据 +|`total`| Integer|否|总共有多少条数据 diff --git "a/\345\243\260\346\230\216.md" "b/\345\243\260\346\230\216.md" new file mode 100644 index 0000000..3ebd493 --- /dev/null +++ "b/\345\243\260\346\230\216.md" @@ -0,0 +1,7 @@ +# 声明 + +**服务器只提供搜索以及在线转码的计算能力,没有存储任何小说内容。如有任何疑问请通过以下提供的联系方式联系我们。** + +*Telegram*: [https://t.me/yuenov](https://t.me/yuenov) + +*Gmail*: \ No newline at end of file