├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin └── zan.js ├── logo.txt ├── package.json ├── src ├── index.js ├── lib │ ├── checker.js │ ├── conf.js │ ├── htmlmin.js │ ├── print_helper.js │ └── util.js └── plugins │ ├── babel │ ├── action.js │ └── index.js │ ├── config │ ├── action.js │ └── index.js │ ├── create_node_module │ ├── action.js │ └── index.js │ ├── create_zan_app │ ├── action.js │ └── index.js │ ├── dev │ ├── action.js │ └── index.js │ ├── doc │ └── index.js │ └── htmlmin │ ├── action.js │ └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | .idea/ 61 | static 62 | downloads 63 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # ChangeLog 2 | 3 | ## 0.0.1 4 | 5 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/youzan/zan-tool/6b77e960b0df08cdf4874b76046986f6113c11ba/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Zan Tool 2 | 3 | ### 一、工具介绍 4 | 5 | Zan Node Web 框架的配套开发工具,例如初始化一个新项目、新建一个 NPM 包、本地开发等。 6 | 7 | **支持特性:** 8 | 9 | * 支持从 Github 下载最新项目模板 10 | * 支持 Git 风格子命令 11 | * 初始化 12 | * 基于 Zan Node 框架快速搭建一个 web 项目; 13 | * 初始化一个新的 NPM 包; 14 | * 开发 & 调试 15 | * 本地开发,文件修改后自动重启服务; 16 | * HTML 模板压缩 17 | 18 | ### 二、安装 19 | 20 | ``` 21 | npm install -g zan-tool 22 | ``` 23 | 24 | ### 三、API 25 | 26 | #### 查看所有帮助命令 27 | 28 | ``` 29 | zan 30 | ``` 31 | 32 | ``` 33 | Usage: zan [options] [command] 34 | 35 | 36 | Commands: 37 | 38 | init 初始化一个新的 ZanNode Web 项目 39 | module 初始化一个 NPM 包项目 40 | dev [options] 本地开发,开启后端服务 41 | babel [options] Babel 编译文件 42 | htmlmin HTML 模板压缩 43 | config [options] 配置信息查看、编辑 44 | outdated 检测当前项目已经过时的 NPM 包 45 | doc 查看 ZanNode 框架文档 46 | * 47 | 48 | Options: 49 | 50 | -h, --help output usage information 51 | -V, --version output the version number 52 | 53 | ____ _____ _ 54 | o O O |_ / __ _ _ _ |_ _| ___ ___ | | 55 | o / / / _` | | ' \ | | / _ \ / _ \ | | 56 | TS__[O] /___| \__,_| |_||_| _|_|_ \___/ \___/ _|_|_ 57 | {======|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| 58 | ./o--000'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' 59 | ----------- 有赞出品,必属精品 https://github.com/youzan ----------- 60 | ``` 61 | 62 | ### 四、zan.json 配置文件 63 | 64 | #### 1、htmlmin 配置 65 | 66 | | 字段 | 类型 | 说明 | 67 | | ----- | ----- | ----- | 68 | | src | String/Array | HTML 模板源路径 | 69 | | dest | String | HTML 模板压缩后存放路径 | 70 | | options | Object | HTML 模板压缩配置参数,更多有关参数说明请参考:https://github.com/kangax/html-minifier#options-quick-reference | 71 | 72 | ``` 73 | { 74 | "htmlmin": { 75 | "src": "./server/views/**/*.html", 76 | "dest": "./server/views_dist", 77 | "options": { 78 | "collapseWhitespace": true, 79 | "minifyCSS": true, 80 | "minifyJS": true, 81 | "removeComments": true 82 | } 83 | } 84 | ... 85 | } 86 | ``` 87 | 88 | #### 2、babel 配置 89 | 90 | babel 配置信息支持两种形式,对象或数组。 91 | 92 | | 字段 | 类型 | 说明 | 93 | | ----- | ----- | ----- | 94 | | src | String | 源文件路径 | 95 | | dest | String | 目标路径 | 96 | 97 | ``` 98 | // 对象形式 99 | { 100 | "babel": { 101 | "src": "./server", 102 | "dest": "./server_dist" 103 | } 104 | ... 105 | } 106 | // 数组形式 107 | { 108 | "babel": [{ 109 | "src": "./server", 110 | "dest": "./server_dist" 111 | }] 112 | ... 113 | } 114 | ``` 115 | 116 | 117 | -------------------------------------------------------------------------------- /bin/zan.js: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env node 2 | 3 | require('../src/index.js'); 4 | -------------------------------------------------------------------------------- /logo.txt: -------------------------------------------------------------------------------- 1 | ____ _____ _ 2 | o O O |_ / __ _ _ _ |_ _| ___ ___ | | 3 | o / / / _` | | ' \ | | / _ \ / _ \ | | 4 | TS__[O] /___| \__,_| |_||_| _|_|_ \___/ \___/ _|_|_ 5 | {======|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| 6 | ./o--000'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "zan-tool", 3 | "version": "0.0.10", 4 | "description": "Zan Node 框架配套开发工具", 5 | "main": "./src/index.js", 6 | "bin": { 7 | "zan": "bin/zan.js" 8 | }, 9 | "dependencies": { 10 | "babel-cli": "6.24.1", 11 | "boxen": "1.2.1", 12 | "chalk": "2.0.1", 13 | "cli-table": "0.3.1", 14 | "commander": "2.9.0", 15 | "conf": "1.1.2", 16 | "download": "6.2.5", 17 | "ejs": "2.5.7", 18 | "fs-extra": "4.0.1", 19 | "html-minifier": "3.5.3", 20 | "inquirer": "3.2.1", 21 | "map-stream": "0.0.7", 22 | "nodemon": "1.11.0", 23 | "opn": "5.1.0", 24 | "ora": "1.3.0", 25 | "shelljs": "0.7.8", 26 | "vinyl-fs": "2.4.4" 27 | }, 28 | "devDependencies": {}, 29 | "scripts": {}, 30 | "repository": { 31 | "type": "git", 32 | "url": "git@github.com:youzan/zan-tool.git" 33 | }, 34 | "author": "KK", 35 | "license": "MIT" 36 | } 37 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | const program = require('commander'); 2 | const chalk = require('chalk'); 3 | const path = require('path'); 4 | const fs = require('fs-extra'); 5 | const Util = require('./lib/util'); 6 | const PrintHelper = require('./lib/print_helper'); 7 | const conf = require('./lib/conf'); 8 | 9 | const doc = require('./plugins/doc'); 10 | const babel = require('./plugins/babel'); 11 | const createNodeModule = require('./plugins/create_node_module'); 12 | const dev = require('./plugins/dev'); 13 | const htmlmin = require('./plugins/htmlmin'); 14 | const createZanApp = require('./plugins/create_zan_app'); 15 | const config = require('./plugins/config'); 16 | 17 | function registerPlugin(plugin) { 18 | let pro = program 19 | .command(plugin.name) 20 | .description(plugin.description); 21 | if (plugin.options) { 22 | for (let i = 0; i < plugin.options.length; i++) { 23 | pro.option(plugin.options[i][0], plugin.options[i][1]); 24 | } 25 | } 26 | pro.action(plugin.action) 27 | .on('--help', plugin.help); 28 | } 29 | 30 | program 31 | .version(Util.getPkgInfo().version); 32 | 33 | registerPlugin(createZanApp); 34 | registerPlugin(createNodeModule); 35 | registerPlugin(dev); 36 | registerPlugin(babel); 37 | registerPlugin(htmlmin); 38 | registerPlugin(config); 39 | registerPlugin(doc); 40 | 41 | const EXTRA_PLUGINS_DIR = conf.get('EXTRA_PLUGINS') || path.join(__dirname, 'extra_plugins'); 42 | if (fs.existsSync(EXTRA_PLUGINS_DIR)) { 43 | let filenames = fs.readdirSync(EXTRA_PLUGINS_DIR); 44 | filenames = filenames.filter((item) => { 45 | return item.indexOf('.') !== 0 && item !== 'package.json' && item !== 'node_modules'; 46 | }); 47 | for (let i = 0; i < filenames.length; i++) { 48 | let stat = fs.statSync(`${EXTRA_PLUGINS_DIR}/${filenames[i]}`); 49 | if (stat.isDirectory()) { 50 | let requireContent = require(`${EXTRA_PLUGINS_DIR}/${filenames[i]}`); 51 | registerPlugin(requireContent); 52 | } 53 | } 54 | } 55 | 56 | 57 | program 58 | .command('*') 59 | .action((commandName) => { 60 | console.log(chalk.red(`命令 ${commandName} 不存在!`)); 61 | }); 62 | 63 | program 64 | .parse(process.argv); 65 | 66 | if (program.args.length === 0) { 67 | program.outputHelp(); 68 | PrintHelper.printLogo(); 69 | } -------------------------------------------------------------------------------- /src/lib/checker.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs-extra'); 2 | const chalk = require('chalk'); 3 | const path = require('path'); 4 | const shelljs = require('shelljs'); 5 | const Util = require('./util'); 6 | const PrintHelper = require('./print_helper'); 7 | 8 | module.exports = { 9 | 10 | // 检测当前目录是否存在项目配置文件 zan.json 11 | checkZanConfig() { 12 | let projectRoot = Util.getProjectRoot(); 13 | if (!fs.existsSync(path.join(projectRoot, 'zan.json'))) { 14 | console.log(chalk.red('当前目录不存在 zan.json 配置文件!')); 15 | PrintHelper.printConfigHelp(); 16 | shelljs.exit(1); 17 | } 18 | }, 19 | 20 | }; 21 | -------------------------------------------------------------------------------- /src/lib/conf.js: -------------------------------------------------------------------------------- 1 | const chalk = require('chalk'); 2 | const Table = require('cli-table'); 3 | const Conf = require('conf'); 4 | 5 | const conf = new Conf({ 6 | configName: 'zantool.conf' 7 | }); 8 | 9 | module.exports = { 10 | 11 | list() { 12 | const config = conf.get(); 13 | let table = new Table({ 14 | head: ['name', 'description'] 15 | }); 16 | for (let i in config) { 17 | table.push([i, config[i]]); 18 | } 19 | console.log(table.toString()); 20 | }, 21 | 22 | get(key) { 23 | return conf.get(key); 24 | }, 25 | 26 | getAction(key) { 27 | const config = conf.get(key); 28 | if (config) { 29 | let table = new Table({ 30 | head: ['name', 'description'] 31 | }); 32 | table.push([key, config]); 33 | console.log(table.toString()); 34 | } else { 35 | console.log(chalk.red(`配置信息 ${key} 不存在`)); 36 | } 37 | }, 38 | 39 | set(key, value) { 40 | const arr = key.split('='); 41 | if (arr.length !== 2) { 42 | console.log(chalk.red('参数错误!')); 43 | console.log(''); 44 | console.log(chalk.green(' Examples:')); 45 | console.log(''); 46 | console.log(chalk.green(' $ zan config --set key=value')); 47 | console.log(); 48 | } else { 49 | conf.set(arr[0], arr[1]); 50 | console.log(chalk.green('设置成功')); 51 | this.list(); 52 | } 53 | }, 54 | 55 | delete(key) { 56 | if (conf.has(key)) { 57 | conf.delete(key); 58 | console.log(chalk.green('删除成功')); 59 | } else { 60 | console.log(chalk.red(`配置信息 ${key} 不存在`)); 61 | } 62 | }, 63 | 64 | has(key) { 65 | return conf.has(key); 66 | } 67 | 68 | 69 | }; -------------------------------------------------------------------------------- /src/lib/htmlmin.js: -------------------------------------------------------------------------------- 1 | const chalk = require('chalk'); 2 | const vfs = require('vinyl-fs'); 3 | const mapStream = require('map-stream'); 4 | const minify = require('html-minifier').minify; 5 | 6 | function htmlmin(config, call) { 7 | console.log(chalk.green('开始任务:HTML 模板压缩')); 8 | call = call || function () { }; 9 | vfs.src(config.src) 10 | .pipe(mapStream((file, callback) => { 11 | let data = minify(String(file.contents), config.options); 12 | file.contents = new Buffer(data); 13 | console.log(`模板文件:${file.path}`); 14 | callback(null, file); 15 | })) 16 | .pipe(vfs.dest(config.dest)) 17 | .pipe(mapStream((file, callback) => { 18 | console.log(chalk.blue(`压缩成功:${file.path}`)); 19 | callback(null, file); 20 | })) 21 | .on('data', () => { 22 | }) 23 | .on('end', () => { 24 | console.log(chalk.green('完成任务:HTML 模板压缩完成')); 25 | call(); 26 | }); 27 | } 28 | 29 | module.exports = htmlmin; 30 | -------------------------------------------------------------------------------- /src/lib/print_helper.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs-extra'); 2 | const path = require('path'); 3 | const chalk = require('chalk'); 4 | const Util = require('./util'); 5 | 6 | 7 | module.exports = { 8 | 9 | // 打印 Zan Tool Logo 10 | printLogo() { 11 | let logoTxt = fs.readFileSync(path.join(Util.getRootPath(), 'logo.txt')); 12 | console.log(chalk.magenta(logoTxt)); 13 | console.log(chalk.green('----------- 有赞出品,必属精品 https://github.com/youzan -----------\n')); 14 | }, 15 | 16 | printConfigHelp() { 17 | console.log(chalk.red(`更多有关 zan.json 配置文件介绍,请参考文档:${chalk.blue('https://www.npmjs.com/package/zan-tool')}`)); 18 | }, 19 | 20 | }; 21 | -------------------------------------------------------------------------------- /src/lib/util.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs-extra'); 2 | const path = require('path'); 3 | const chalk = require('chalk'); 4 | const shelljs = require('shelljs'); 5 | const lodash = require('lodash'); 6 | 7 | module.exports = { 8 | 9 | getProjectRoot() { 10 | return process.cwd(); 11 | }, 12 | 13 | // 获取根目录 14 | getRootPath() { 15 | return path.resolve(__dirname, '../../'); 16 | }, 17 | 18 | // 获取 package.json 文件 19 | getPkgInfo() { 20 | let result = {}; 21 | try { 22 | result = JSON.parse(fs.readFileSync(path.join(this.getRootPath(), 'package.json'))); 23 | } catch (e) { 24 | console.log(chalk.red('读取 package.json 出错!')); 25 | } 26 | return result; 27 | }, 28 | 29 | // 获取项目配置文件 30 | getProjectConfig() { 31 | let zanConfigPath = path.join(this.getProjectRoot(), 'zan.json'); 32 | let result = {}; 33 | try { 34 | result = require(zanConfigPath); 35 | } catch (e) { 36 | console.log(chalk.red('读取 zan.json 出错!')); 37 | shelljs.exit(1); 38 | } 39 | return result; 40 | }, 41 | 42 | // 获取 HTML 压缩配置信息 43 | getHtmlminConfig() { 44 | let projectRoot = this.getProjectRoot(); 45 | let projectConfig = this.getProjectConfig(); 46 | 47 | let config = lodash.defaultsDeep(projectConfig && projectConfig.htmlmin || {}, { 48 | src: './server/views/**/*.html', 49 | dest: './server_dist/views', 50 | options: { 51 | collapseWhitespace: true, 52 | minifyCSS: true, 53 | minifyJS: true, 54 | removeComments: true, 55 | ignoreCustomFragments: [/{#[\s\S]*?#}/, /{{[\s\S]*?}}/, /{%[\s\S]*?%}/, /<\?[\s\S]*?\?>/] 56 | } 57 | }); 58 | config.dest = path.join(projectRoot, config.dest); 59 | 60 | if (Array.isArray(config.src)) { 61 | for (let i = 0; i < config.src.length; i++) { 62 | if (/!/.test(config.src[i])) { 63 | config.src[i] = `!${path.join(projectRoot, config.src[i].replace('!', ''))}`; 64 | } else { 65 | config.src[i] = path.join(projectRoot, config.src[i]); 66 | } 67 | } 68 | } else { 69 | config.src = path.join(projectRoot, config.src); 70 | } 71 | return config; 72 | } 73 | 74 | }; 75 | -------------------------------------------------------------------------------- /src/plugins/babel/action.js: -------------------------------------------------------------------------------- 1 | const shelljs = require('shelljs'); 2 | const path = require('path'); 3 | const chalk = require('chalk'); 4 | const Checker = require('../../lib/checker'); 5 | const Util = require('../../lib/util'); 6 | const PrintHelper = require('../../lib/print_helper'); 7 | 8 | module.exports = function(command) { 9 | Checker.checkZanConfig(); 10 | 11 | // 判断 zan.json 是否已配置 babel 12 | const config = Util.getProjectConfig(); 13 | if (!config.babel) { 14 | console.log(chalk.red('当前项目 zan.json 配置文件里不存在 babel 相关配置,请先配置!')); 15 | PrintHelper.printConfigHelp(); 16 | shelljs.exit(1); 17 | } 18 | 19 | console.log(chalk.green('开始任务:Babel 编译...')); 20 | 21 | const babelConfig = config.babel; 22 | const babelCliDirname = path.dirname(require.resolve('babel-cli')); 23 | const babelCli = `${babelCliDirname}/bin/babel.js`; 24 | console.log(chalk.green('babel-cli: ', babelCli)); 25 | 26 | if (Array.isArray(babelConfig)) { 27 | for (let i = 0; i < babelConfig.length; i++) { 28 | if (command.watch) { 29 | shelljs.exec(`${babelCli} ${path.join(babelConfig[i].src)} --out-dir ${path.join(babelConfig[i].dest)} --copy-files --watch`); 30 | } else { 31 | shelljs.exec(`${babelCli} ${path.join(babelConfig[i].src)} --out-dir ${path.join(babelConfig[i].dest)} --copy-files`); 32 | } 33 | } 34 | } else { 35 | if (command.watch) { 36 | shelljs.exec(`${babelCli} ${path.join(babelConfig.src)} --out-dir ${path.join(babelConfig.dest)} --copy-files --watch`); 37 | } else { 38 | shelljs.exec(`${babelCli} ${path.join(babelConfig.src)} --out-dir ${path.join(babelConfig.dest)} --copy-files`); 39 | } 40 | } 41 | 42 | console.log(chalk.green('完成任务:Babel 编译完成')); 43 | }; 44 | -------------------------------------------------------------------------------- /src/plugins/babel/index.js: -------------------------------------------------------------------------------- 1 | const action = require('./action'); 2 | 3 | module.exports = { 4 | name: "babel", 5 | description: "Babel 编译文件", 6 | options: [ 7 | ['--watch', '开启 watch 模式'] 8 | ], 9 | help: () => { 10 | console.log(' Examples:'); 11 | console.log(''); 12 | console.log(' $ zan babel'); 13 | console.log(' $ zan babel --watch'); 14 | console.log(); 15 | }, 16 | action: action 17 | }; -------------------------------------------------------------------------------- /src/plugins/config/action.js: -------------------------------------------------------------------------------- 1 | const chalk = require('chalk'); 2 | const Table = require('cli-table'); 3 | const conf = require('../../lib/conf'); 4 | 5 | module.exports = function(...args) { 6 | // console.log(args); 7 | if (args.length === 2) { 8 | if (args[1].get) { // get 操作 9 | conf.getAction(args[0]); 10 | } else if (args[1].set) { // set 操作 11 | conf.set(args[0]); 12 | } else if (args[1].delete) { 13 | conf.delete(args[0]); 14 | } 15 | } else if (args.length === 1) { 16 | if (args[0].list) { 17 | conf.list(); 18 | } else { 19 | console.log(chalk.red('参数错误!')); 20 | } 21 | } else { 22 | console.log(chalk.red('参数错误!')); 23 | } 24 | process.exit(0); 25 | }; -------------------------------------------------------------------------------- /src/plugins/config/index.js: -------------------------------------------------------------------------------- 1 | const action = require('./action'); 2 | 3 | module.exports = { 4 | name: 'config', 5 | description: '配置信息查看、编辑', 6 | options: [ 7 | ['-l, --list', '显示全部配置信息'], 8 | ['-g --get', '获取配置信息'], 9 | ['-s, --set', '设置配置信息'], 10 | ['-d --delete', '删除配置信息'] 11 | ], 12 | action: action, 13 | help: () => { 14 | console.log(' Examples:'); 15 | console.log(''); 16 | console.log(' $ zan config -l'); 17 | console.log(' $ zan config --list'); 18 | console.log(' $ zan config -s EXTRA_PLUGINS=/path/to/extra_plugins_dir'); 19 | console.log(); 20 | } 21 | }; -------------------------------------------------------------------------------- /src/plugins/create_node_module/action.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs-extra'); 2 | const path = require('path'); 3 | const chalk = require('chalk'); 4 | const inquirer = require('inquirer'); 5 | const download = require('download'); 6 | const ejs = require('ejs'); 7 | const ora = require('ora'); 8 | const Util = require('../../lib/util'); 9 | const NODE_MODULE_TEMPLATE = 'https://github.com/kk0829/node-module-template/archive/master.zip'; 10 | 11 | module.exports = function (moduleName) { 12 | if (fs.existsSync(moduleName)) { 13 | console.log(chalk.red(`创建失败,目录 ${moduleName} 已存在`)); 14 | return; 15 | } 16 | 17 | let promps = [{ 18 | type: 'input', 19 | name: 'name', 20 | message: '请输入模块名称:', 21 | default: `${moduleName}`, 22 | validate: (input) => { 23 | if (!input) { 24 | return '模块名称不能为空'; 25 | } 26 | return true; 27 | } 28 | }, { 29 | type: 'input', 30 | name: 'version', 31 | default: '0.0.1', 32 | message: '请输入模块版本号:' 33 | }, { 34 | type: 'input', 35 | name: 'description', 36 | message: '请输入模块描述信息:' 37 | }, { 38 | type: 'input', 39 | name: 'author', 40 | message: '请输入模块作者信息:' 41 | }, { 42 | type: 'list', 43 | name: 'license', 44 | message: '请选择License:', 45 | choices: [ 46 | 'MIT', 47 | 'Apache License 2.0', 48 | 'None' 49 | ] 50 | }]; 51 | 52 | inquirer.prompt(promps).then((answers) => { 53 | let downloadPath = path.join(Util.getRootPath(), 'downloads/'); 54 | 55 | // 显示 loading 56 | const spinner = ora({ 57 | text: '正在下载项目模板...', 58 | color: 'green' 59 | }).start(); 60 | 61 | download(NODE_MODULE_TEMPLATE, downloadPath, { 62 | extract: true 63 | }).then((data) => { 64 | // 关闭 loading 65 | spinner.stop(); 66 | 67 | for (let i = 0; i < data.length; i++) { 68 | let item = data[i]; 69 | let newPath = path.join(Util.getProjectRoot(), item.path.replace(item.path.split('/')[0], moduleName)); 70 | 71 | if (item.type === 'file') { 72 | let fileData = fs.readFileSync(path.join(downloadPath, item.path), 'utf8'); 73 | let content = ejs.compile(fileData)(answers); 74 | fs.outputFileSync(newPath, content); 75 | console.log(chalk.green('新建文件:', newPath)); 76 | } else if (item.type === 'directory') { 77 | fs.ensureDirSync(newPath); 78 | console.log(chalk.green('新建目录:', newPath)); 79 | } 80 | } 81 | 82 | console.log(chalk.green('✔ 创建成功')); 83 | console.log(chalk.green('')); 84 | console.log(chalk.green(`进入项目目录:cd ${moduleName}`)); 85 | console.log(chalk.green('安装依赖:npm install')); 86 | console.log(chalk.green('开发需要用到的命令:')); 87 | console.log(chalk.green('')); 88 | console.log(chalk.green(' 编译模块源码:npm run build')); 89 | console.log(chalk.green(' 编译模块源码(监听模式):npm run build:watch')); 90 | console.log(chalk.green('')); 91 | }); 92 | }); 93 | }; 94 | -------------------------------------------------------------------------------- /src/plugins/create_node_module/index.js: -------------------------------------------------------------------------------- 1 | const action = require('./action'); 2 | 3 | module.exports = { 4 | name: "module ", 5 | description: "初始化一个 NPM 包项目", 6 | action: action, 7 | help: () => { 8 | console.log(' Examples:'); 9 | console.log(''); 10 | console.log(' $ zan module demo'); 11 | console.log(); 12 | } 13 | }; -------------------------------------------------------------------------------- /src/plugins/create_zan_app/action.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs-extra'); 2 | const path = require('path'); 3 | const chalk = require('chalk'); 4 | const lodash = require('lodash'); 5 | const inquirer = require('inquirer'); 6 | const download = require('download'); 7 | const ejs = require('ejs'); 8 | const boxen = require('boxen'); 9 | const ora = require('ora'); 10 | const Util = require('../../lib/util'); 11 | const ZAN_NODE_TEMPLATE = 'https://github.com/youzan/zan-template/archive/master.zip'; 12 | 13 | module.exports = function(projectName, command) { 14 | if (fs.existsSync(projectName)) { 15 | console.log(chalk.red(`创建失败,当前目录 ${projectName} 已存在`)); 16 | return; 17 | } 18 | 19 | let promps = [{ 20 | type: 'input', 21 | name: 'name', 22 | message: '请输入项目名:', 23 | default: `${projectName}`, 24 | validate(input) { 25 | if (!input) { 26 | return '项目名不能为空'; 27 | } 28 | return true; 29 | } 30 | }, { 31 | type: 'input', 32 | name: 'version', 33 | default: '0.0.1', 34 | message: '请输入项目版本号:' 35 | }, { 36 | type: 'input', 37 | name: 'description', 38 | message: '请输入项目描述信息:' 39 | }, { 40 | type: 'input', 41 | name: 'keywords', 42 | message: '请输入项目关键字(多个关键字之间用空格隔开):' 43 | }, { 44 | type: 'input', 45 | name: 'author', 46 | message: '请输入项目作者信息:' 47 | }]; 48 | 49 | inquirer.prompt(promps).then((answers) => { 50 | answers.keywords = answers.keywords ? answers.keywords.split(' ') : []; 51 | let downloadPath = path.join(Util.getRootPath(), 'downloads/'); 52 | // 显示 loading 53 | const spinner = ora({ 54 | text: '正在下载项目模板...', 55 | color: 'green' 56 | }).start(); 57 | 58 | download(ZAN_NODE_TEMPLATE, downloadPath, { 59 | extract: true 60 | }).then((data) => { 61 | // 关闭 loading 62 | spinner.stop(); 63 | 64 | let item; 65 | let content; 66 | let fileData; 67 | for (let i = 0; i < data.length; i++) { 68 | item = data[i]; 69 | item.newPath = path.join(process.cwd(), item.path.replace(item.path.split('/')[0], projectName)); 70 | 71 | if (item.type === 'file') { 72 | fileData = fs.readFileSync(path.join(downloadPath, item.path), 'utf8'); 73 | if (/package.json/.test(item.path)) { 74 | content = ejs.compile(fileData)(answers); 75 | } else { 76 | content = fileData; 77 | } 78 | 79 | fs.outputFileSync(item.newPath, content); 80 | console.log(chalk.green('新建文件:', item.newPath)); 81 | } else if (item.type === 'directory') { 82 | fs.ensureDirSync(item.newPath); 83 | console.log(chalk.green('新建目录:', item.newPath)); 84 | } 85 | } 86 | 87 | let msg = ` 88 | ✔ 项目初始化成功 89 | 90 | 请按照下面的步骤进行操作: 91 | 1. cd ${projectName} 92 | 2. npm install 安装项目依赖 93 | 3. zan dev 开启后端服务 94 | `; 95 | console.log(boxen(msg, { 96 | padding: { 97 | left: 0, 98 | right: 4, 99 | top: 0, 100 | bottom: 0 101 | }, 102 | margin: 0, 103 | borderColor: 'green', 104 | borderStyle: 'classic' 105 | })); 106 | }).catch((err) => { 107 | console.log(err); 108 | }); 109 | }); 110 | 111 | }; -------------------------------------------------------------------------------- /src/plugins/create_zan_app/index.js: -------------------------------------------------------------------------------- 1 | const action = require('./action'); 2 | 3 | module.exports = { 4 | name: "init ", 5 | description: "初始化一个新的 ZanNode Web 项目", 6 | action: action, 7 | help: () => { 8 | console.log(' Examples:'); 9 | console.log(''); 10 | console.log(' $ zan init intro'); 11 | console.log(); 12 | } 13 | }; 14 | -------------------------------------------------------------------------------- /src/plugins/dev/action.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | const nodemon = require('nodemon'); 3 | const chalk = require('chalk'); 4 | const Util = require('../../lib/util'); 5 | 6 | const defaultDoraemon = 'http://127.0.0.1:8001'; 7 | 8 | module.exports = function(command) { 9 | const projectRoot = Util.getProjectRoot(); 10 | const config = { 11 | verbose: false, 12 | // nodeArgs: ['--harmony'], 13 | env: { 14 | NODE_ENV: command.env ? command.env : 'development' 15 | }, 16 | watch: [ 17 | path.join(projectRoot, 'server/**/*.*') 18 | ], 19 | ignore: [ 20 | 21 | ], 22 | script: path.join(projectRoot, 'server/babel.app.js') 23 | }; 24 | 25 | // 传递了 --debug 参数,示例: 26 | // zan dev --debug 27 | // zan dev --debug koa:application 28 | if (command.debug && command.debug === true) { 29 | config.env.DEBUG = '*'; 30 | } else if (command.debug && command.debug !== true) { 31 | config.env.DEBUG = command.debug; 32 | } 33 | 34 | // 传递了--mock 参数 35 | // zan dev --mock 36 | // zan dev --mock https://127.0.0.1:8001 37 | if (command.mock) { 38 | config.env.HTTPS_PROXY = config.env.HTTP_PROXY = command.mock === true ? defaultDoraemon : command.mock; 39 | } 40 | 41 | nodemon(config).on('start', () => { 42 | console.log(chalk.green('应用启动中...')); 43 | }).on('quit', () => { 44 | console.log(chalk.green('✔ 应用退出成功')); 45 | }).on('restart', (files) => { 46 | console.log(chalk.green('监听到文件修改:', files)); 47 | }); 48 | } -------------------------------------------------------------------------------- /src/plugins/dev/index.js: -------------------------------------------------------------------------------- 1 | const action = require('./action'); 2 | 3 | module.exports = { 4 | name: "dev", 5 | description: "本地开发,开启后端服务", 6 | options: [ 7 | ['--debug [debugName]', '开启 debug 模式'], 8 | ['--mock [proxyUrl]', '开启 mock 模式,默认 proxy 地址为http://127.0.0.1:8001'], 9 | ['--env [NODE_ENV]', '设置 NODE_ENV 环境变量'] 10 | ], 11 | action: action, 12 | help: () => { 13 | console.log(' Examples:'); 14 | console.log(''); 15 | console.log(' $ zan dev'); 16 | console.log(' $ zan dev --debug'); 17 | console.log(' $ zan dev --debug koa:application'); 18 | console.log(' $ zan dev --mock'); 19 | console.log(' $ zan dev --mock http://127.0.0.1:8001'); 20 | console.log(' $ zan dev --debug --mock'); 21 | console.log(' $ zan dev --env pre'); 22 | console.log(); 23 | } 24 | }; 25 | -------------------------------------------------------------------------------- /src/plugins/doc/index.js: -------------------------------------------------------------------------------- 1 | const opn = require('opn'); 2 | 3 | module.exports = { 4 | name: "doc", 5 | description: "查看 ZanNode 框架文档", 6 | help: () => { 7 | console.log(' Examples:'); 8 | console.log(''); 9 | console.log(' $ zan doc'); 10 | console.log(); 11 | }, 12 | action: () => { 13 | opn('https://www.youzanyun.com/zan-node'); 14 | process.exit(0); 15 | } 16 | }; -------------------------------------------------------------------------------- /src/plugins/htmlmin/action.js: -------------------------------------------------------------------------------- 1 | const Checker = require('../../lib/checker'); 2 | const Util = require('../../lib/util'); 3 | const htmlmin = require('../../lib/htmlmin'); 4 | 5 | module.exports = function () { 6 | Checker.checkZanConfig(); 7 | let config = Util.getHtmlminConfig(); 8 | htmlmin(config); 9 | }; -------------------------------------------------------------------------------- /src/plugins/htmlmin/index.js: -------------------------------------------------------------------------------- 1 | const action = require('./action'); 2 | 3 | module.exports = { 4 | name: "htmlmin", 5 | description: "HTML 模板压缩", 6 | action: action, 7 | help: () => { 8 | console.log(' Examples:'); 9 | console.log(''); 10 | console.log(' $ zan htmlmin'); 11 | console.log(); 12 | } 13 | }; 14 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | JSONStream@~1.3.1: 6 | version "1.3.1" 7 | resolved "http://registry.npm.qima-inc.com/JSONStream/download/JSONStream-1.3.1.tgz#707f761e01dae9e16f1bcf93703b78c70966579a" 8 | dependencies: 9 | jsonparse "^1.2.0" 10 | through ">=2.2.7 <3" 11 | 12 | abbrev@1, abbrev@~1.1.0: 13 | version "1.1.0" 14 | resolved "http://registry.npm.qima-inc.com/abbrev/download/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 15 | 16 | ajv@^4.9.1: 17 | version "4.11.8" 18 | resolved "http://registry.npm.qima-inc.com/ajv/download/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 19 | dependencies: 20 | co "^4.6.0" 21 | json-stable-stringify "^1.0.1" 22 | 23 | ansi-align@^2.0.0: 24 | version "2.0.0" 25 | resolved "http://registry.npm.qima-inc.com/ansi-align/download/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 26 | dependencies: 27 | string-width "^2.0.0" 28 | 29 | ansi-escapes@^2.0.0: 30 | version "2.0.0" 31 | resolved "http://registry.npm.qima-inc.com/ansi-escapes/download/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" 32 | 33 | ansi-regex@^2.0.0, ansi-regex@^2.1.1, ansi-regex@~2.1.1: 34 | version "2.1.1" 35 | resolved "http://registry.npm.qima-inc.com/ansi-regex/download/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 36 | 37 | ansi-regex@^3.0.0: 38 | version "3.0.0" 39 | resolved "http://registry.npm.qima-inc.com/ansi-regex/download/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 40 | 41 | ansi-styles@^2.2.1: 42 | version "2.2.1" 43 | resolved "http://registry.npm.qima-inc.com/ansi-styles/download/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 44 | 45 | ansi-styles@^3.1.0: 46 | version "3.2.0" 47 | resolved "http://registry.npm.qima-inc.com/ansi-styles/download/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 48 | dependencies: 49 | color-convert "^1.9.0" 50 | 51 | ansicolors@~0.3.2: 52 | version "0.3.2" 53 | resolved "http://registry.npm.qima-inc.com/ansicolors/download/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979" 54 | 55 | ansistyles@~0.1.3: 56 | version "0.1.3" 57 | resolved "http://registry.npm.qima-inc.com/ansistyles/download/ansistyles-0.1.3.tgz#5de60415bda071bb37127854c864f41b23254539" 58 | 59 | anymatch@^1.3.0: 60 | version "1.3.2" 61 | resolved "http://registry.npm.qima-inc.com/anymatch/download/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 62 | dependencies: 63 | micromatch "^2.1.5" 64 | normalize-path "^2.0.0" 65 | 66 | aproba@^1.0.3, aproba@^1.1.1, aproba@~1.1.1: 67 | version "1.1.2" 68 | resolved "http://registry.npm.qima-inc.com/aproba/download/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 69 | 70 | archy@~1.0.0: 71 | version "1.0.0" 72 | resolved "http://registry.npm.qima-inc.com/archy/download/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 73 | 74 | are-we-there-yet@~1.1.2: 75 | version "1.1.4" 76 | resolved "http://registry.npm.qima-inc.com/are-we-there-yet/download/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 77 | dependencies: 78 | delegates "^1.0.0" 79 | readable-stream "^2.0.6" 80 | 81 | arr-diff@^2.0.0: 82 | version "2.0.0" 83 | resolved "http://registry.npm.qima-inc.com/arr-diff/download/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 84 | dependencies: 85 | arr-flatten "^1.0.1" 86 | 87 | arr-flatten@^1.0.1: 88 | version "1.1.0" 89 | resolved "http://registry.npm.qima-inc.com/arr-flatten/download/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 90 | 91 | array-unique@^0.2.1: 92 | version "0.2.1" 93 | resolved "http://registry.npm.qima-inc.com/array-unique/download/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 94 | 95 | asap@^2.0.0, asap@~2.0.5: 96 | version "2.0.6" 97 | resolved "http://registry.npm.qima-inc.com/asap/download/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 98 | 99 | asn1@~0.2.3: 100 | version "0.2.3" 101 | resolved "http://registry.npm.qima-inc.com/asn1/download/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 102 | 103 | assert-plus@1.0.0, assert-plus@^1.0.0: 104 | version "1.0.0" 105 | resolved "http://registry.npm.qima-inc.com/assert-plus/download/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 106 | 107 | assert-plus@^0.2.0: 108 | version "0.2.0" 109 | resolved "http://registry.npm.qima-inc.com/assert-plus/download/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 110 | 111 | async-each@^1.0.0: 112 | version "1.0.1" 113 | resolved "http://registry.npm.qima-inc.com/async-each/download/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 114 | 115 | async@^2.0.1: 116 | version "2.5.0" 117 | resolved "http://registry.npm.qima-inc.com/async/download/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 118 | dependencies: 119 | lodash "^4.14.0" 120 | 121 | asynckit@^0.4.0: 122 | version "0.4.0" 123 | resolved "http://registry.npm.qima-inc.com/asynckit/download/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 124 | 125 | aws-sign2@~0.6.0: 126 | version "0.6.0" 127 | resolved "http://registry.npm.qima-inc.com/aws-sign2/download/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 128 | 129 | aws4@^1.2.1: 130 | version "1.6.0" 131 | resolved "http://registry.npm.qima-inc.com/aws4/download/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 132 | 133 | babel-cli@6.24.1: 134 | version "6.24.1" 135 | resolved "http://registry.npm.qima-inc.com/babel-cli/download/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" 136 | dependencies: 137 | babel-core "^6.24.1" 138 | babel-polyfill "^6.23.0" 139 | babel-register "^6.24.1" 140 | babel-runtime "^6.22.0" 141 | commander "^2.8.1" 142 | convert-source-map "^1.1.0" 143 | fs-readdir-recursive "^1.0.0" 144 | glob "^7.0.0" 145 | lodash "^4.2.0" 146 | output-file-sync "^1.1.0" 147 | path-is-absolute "^1.0.0" 148 | slash "^1.0.0" 149 | source-map "^0.5.0" 150 | v8flags "^2.0.10" 151 | optionalDependencies: 152 | chokidar "^1.6.1" 153 | 154 | babel-code-frame@^6.22.0: 155 | version "6.22.0" 156 | resolved "http://registry.npm.qima-inc.com/babel-code-frame/download/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 157 | dependencies: 158 | chalk "^1.1.0" 159 | esutils "^2.0.2" 160 | js-tokens "^3.0.0" 161 | 162 | babel-core@^6.24.1: 163 | version "6.25.0" 164 | resolved "http://registry.npm.qima-inc.com/babel-core/download/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" 165 | dependencies: 166 | babel-code-frame "^6.22.0" 167 | babel-generator "^6.25.0" 168 | babel-helpers "^6.24.1" 169 | babel-messages "^6.23.0" 170 | babel-register "^6.24.1" 171 | babel-runtime "^6.22.0" 172 | babel-template "^6.25.0" 173 | babel-traverse "^6.25.0" 174 | babel-types "^6.25.0" 175 | babylon "^6.17.2" 176 | convert-source-map "^1.1.0" 177 | debug "^2.1.1" 178 | json5 "^0.5.0" 179 | lodash "^4.2.0" 180 | minimatch "^3.0.2" 181 | path-is-absolute "^1.0.0" 182 | private "^0.1.6" 183 | slash "^1.0.0" 184 | source-map "^0.5.0" 185 | 186 | babel-generator@^6.25.0: 187 | version "6.25.0" 188 | resolved "http://registry.npm.qima-inc.com/babel-generator/download/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc" 189 | dependencies: 190 | babel-messages "^6.23.0" 191 | babel-runtime "^6.22.0" 192 | babel-types "^6.25.0" 193 | detect-indent "^4.0.0" 194 | jsesc "^1.3.0" 195 | lodash "^4.2.0" 196 | source-map "^0.5.0" 197 | trim-right "^1.0.1" 198 | 199 | babel-helpers@^6.24.1: 200 | version "6.24.1" 201 | resolved "http://registry.npm.qima-inc.com/babel-helpers/download/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 202 | dependencies: 203 | babel-runtime "^6.22.0" 204 | babel-template "^6.24.1" 205 | 206 | babel-messages@^6.23.0: 207 | version "6.23.0" 208 | resolved "http://registry.npm.qima-inc.com/babel-messages/download/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 209 | dependencies: 210 | babel-runtime "^6.22.0" 211 | 212 | babel-polyfill@^6.23.0: 213 | version "6.23.0" 214 | resolved "http://registry.npm.qima-inc.com/babel-polyfill/download/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 215 | dependencies: 216 | babel-runtime "^6.22.0" 217 | core-js "^2.4.0" 218 | regenerator-runtime "^0.10.0" 219 | 220 | babel-register@^6.24.1: 221 | version "6.24.1" 222 | resolved "http://registry.npm.qima-inc.com/babel-register/download/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 223 | dependencies: 224 | babel-core "^6.24.1" 225 | babel-runtime "^6.22.0" 226 | core-js "^2.4.0" 227 | home-or-tmp "^2.0.0" 228 | lodash "^4.2.0" 229 | mkdirp "^0.5.1" 230 | source-map-support "^0.4.2" 231 | 232 | babel-runtime@^6.22.0: 233 | version "6.25.0" 234 | resolved "http://registry.npm.qima-inc.com/babel-runtime/download/babel-runtime-6.25.0.tgz#33b98eaa5d482bb01a8d1aa6b437ad2b01aec41c" 235 | dependencies: 236 | core-js "^2.4.0" 237 | regenerator-runtime "^0.10.0" 238 | 239 | babel-template@^6.24.1, babel-template@^6.25.0: 240 | version "6.25.0" 241 | resolved "http://registry.npm.qima-inc.com/babel-template/download/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" 242 | dependencies: 243 | babel-runtime "^6.22.0" 244 | babel-traverse "^6.25.0" 245 | babel-types "^6.25.0" 246 | babylon "^6.17.2" 247 | lodash "^4.2.0" 248 | 249 | babel-traverse@^6.25.0: 250 | version "6.25.0" 251 | resolved "http://registry.npm.qima-inc.com/babel-traverse/download/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" 252 | dependencies: 253 | babel-code-frame "^6.22.0" 254 | babel-messages "^6.23.0" 255 | babel-runtime "^6.22.0" 256 | babel-types "^6.25.0" 257 | babylon "^6.17.2" 258 | debug "^2.2.0" 259 | globals "^9.0.0" 260 | invariant "^2.2.0" 261 | lodash "^4.2.0" 262 | 263 | babel-types@^6.25.0: 264 | version "6.25.0" 265 | resolved "http://registry.npm.qima-inc.com/babel-types/download/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" 266 | dependencies: 267 | babel-runtime "^6.22.0" 268 | esutils "^2.0.2" 269 | lodash "^4.2.0" 270 | to-fast-properties "^1.0.1" 271 | 272 | babylon@^6.17.2: 273 | version "6.17.4" 274 | resolved "http://registry.npm.qima-inc.com/babylon/download/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" 275 | 276 | balanced-match@^1.0.0: 277 | version "1.0.0" 278 | resolved "http://registry.npm.qima-inc.com/balanced-match/download/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 279 | 280 | base64-js@0.0.8: 281 | version "0.0.8" 282 | resolved "http://registry.npm.qima-inc.com/base64-js/download/base64-js-0.0.8.tgz#1101e9544f4a76b1bc3b26d452ca96d7a35e7978" 283 | 284 | bcrypt-pbkdf@^1.0.0: 285 | version "1.0.1" 286 | resolved "http://registry.npm.qima-inc.com/bcrypt-pbkdf/download/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 287 | dependencies: 288 | tweetnacl "^0.14.3" 289 | 290 | binary-extensions@^1.0.0: 291 | version "1.9.0" 292 | resolved "http://registry.npm.qima-inc.com/binary-extensions/download/binary-extensions-1.9.0.tgz#66506c16ce6f4d6928a5b3cd6a33ca41e941e37b" 293 | 294 | bl@^1.0.0: 295 | version "1.2.1" 296 | resolved "http://registry.npm.qima-inc.com/bl/download/bl-1.2.1.tgz#cac328f7bee45730d404b692203fcb590e172d5e" 297 | dependencies: 298 | readable-stream "^2.0.5" 299 | 300 | block-stream@*: 301 | version "0.0.9" 302 | resolved "http://registry.npm.qima-inc.com/block-stream/download/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 303 | dependencies: 304 | inherits "~2.0.0" 305 | 306 | bluebird@~3.5.0: 307 | version "3.5.0" 308 | resolved "http://registry.npm.qima-inc.com/bluebird/download/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" 309 | 310 | boom@2.x.x: 311 | version "2.10.1" 312 | resolved "http://registry.npm.qima-inc.com/boom/download/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 313 | dependencies: 314 | hoek "2.x.x" 315 | 316 | boxen@1.2.1, boxen@^1.0.0: 317 | version "1.2.1" 318 | resolved "http://registry.npm.qima-inc.com/boxen/download/boxen-1.2.1.tgz#0f11e7fe344edb9397977fc13ede7f64d956481d" 319 | dependencies: 320 | ansi-align "^2.0.0" 321 | camelcase "^4.0.0" 322 | chalk "^2.0.1" 323 | cli-boxes "^1.0.0" 324 | string-width "^2.0.0" 325 | term-size "^1.2.0" 326 | widest-line "^1.0.0" 327 | 328 | brace-expansion@^1.1.7: 329 | version "1.1.8" 330 | resolved "http://registry.npm.qima-inc.com/brace-expansion/download/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 331 | dependencies: 332 | balanced-match "^1.0.0" 333 | concat-map "0.0.1" 334 | 335 | braces@^1.8.2: 336 | version "1.8.5" 337 | resolved "http://registry.npm.qima-inc.com/braces/download/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 338 | dependencies: 339 | expand-range "^1.8.1" 340 | preserve "^0.2.0" 341 | repeat-element "^1.1.2" 342 | 343 | buffer-crc32@~0.2.3: 344 | version "0.2.13" 345 | resolved "http://registry.npm.qima-inc.com/buffer-crc32/download/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" 346 | 347 | buffer@^3.0.1: 348 | version "3.6.0" 349 | resolved "http://registry.npm.qima-inc.com/buffer/download/buffer-3.6.0.tgz#a72c936f77b96bf52f5f7e7b467180628551defb" 350 | dependencies: 351 | base64-js "0.0.8" 352 | ieee754 "^1.1.4" 353 | isarray "^1.0.0" 354 | 355 | builtin-modules@^1.0.0: 356 | version "1.1.1" 357 | resolved "http://registry.npm.qima-inc.com/builtin-modules/download/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 358 | 359 | builtins@^1.0.3: 360 | version "1.0.3" 361 | resolved "http://registry.npm.qima-inc.com/builtins/download/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" 362 | 363 | call-limit@~1.1.0: 364 | version "1.1.0" 365 | resolved "http://registry.npm.qima-inc.com/call-limit/download/call-limit-1.1.0.tgz#6fd61b03f3da42a2cd0ec2b60f02bd0e71991fea" 366 | 367 | camel-case@3.0.x: 368 | version "3.0.0" 369 | resolved "http://registry.npm.qima-inc.com/camel-case/download/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" 370 | dependencies: 371 | no-case "^2.2.0" 372 | upper-case "^1.1.1" 373 | 374 | camelcase@^4.0.0: 375 | version "4.1.0" 376 | resolved "http://registry.npm.qima-inc.com/camelcase/download/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 377 | 378 | capture-stack-trace@^1.0.0: 379 | version "1.0.0" 380 | resolved "http://registry.npm.qima-inc.com/capture-stack-trace/download/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 381 | 382 | caseless@~0.12.0: 383 | version "0.12.0" 384 | resolved "http://registry.npm.qima-inc.com/caseless/download/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 385 | 386 | caw@^2.0.0: 387 | version "2.0.1" 388 | resolved "http://registry.npm.qima-inc.com/caw/download/caw-2.0.1.tgz#6c3ca071fc194720883c2dc5da9b074bfc7e9e95" 389 | dependencies: 390 | get-proxy "^2.0.0" 391 | isurl "^1.0.0-alpha5" 392 | tunnel-agent "^0.6.0" 393 | url-to-options "^1.0.1" 394 | 395 | chalk@2.0.1, chalk@^2.0.0, chalk@^2.0.1: 396 | version "2.0.1" 397 | resolved "http://registry.npm.qima-inc.com/chalk/download/chalk-2.0.1.tgz#dbec49436d2ae15f536114e76d14656cdbc0f44d" 398 | dependencies: 399 | ansi-styles "^3.1.0" 400 | escape-string-regexp "^1.0.5" 401 | supports-color "^4.0.0" 402 | 403 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1: 404 | version "1.1.3" 405 | resolved "http://registry.npm.qima-inc.com/chalk/download/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 406 | dependencies: 407 | ansi-styles "^2.2.1" 408 | escape-string-regexp "^1.0.2" 409 | has-ansi "^2.0.0" 410 | strip-ansi "^3.0.0" 411 | supports-color "^2.0.0" 412 | 413 | chokidar@^1.4.3, chokidar@^1.6.1: 414 | version "1.7.0" 415 | resolved "http://registry.npm.qima-inc.com/chokidar/download/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 416 | dependencies: 417 | anymatch "^1.3.0" 418 | async-each "^1.0.0" 419 | glob-parent "^2.0.0" 420 | inherits "^2.0.1" 421 | is-binary-path "^1.0.0" 422 | is-glob "^2.0.0" 423 | path-is-absolute "^1.0.0" 424 | readdirp "^2.0.0" 425 | optionalDependencies: 426 | fsevents "^1.0.0" 427 | 428 | chownr@~1.0.1: 429 | version "1.0.1" 430 | resolved "http://registry.npm.qima-inc.com/chownr/download/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 431 | 432 | clean-css@4.1.x: 433 | version "4.1.7" 434 | resolved "http://registry.npm.qima-inc.com/clean-css/download/clean-css-4.1.7.tgz#b9aea4f85679889cf3eae8b40349ec4ebdfdd032" 435 | dependencies: 436 | source-map "0.5.x" 437 | 438 | cli-boxes@^1.0.0: 439 | version "1.0.0" 440 | resolved "http://registry.npm.qima-inc.com/cli-boxes/download/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 441 | 442 | cli-color-tty@^2.0.0: 443 | version "2.0.0" 444 | resolved "http://registry.npm.qima-inc.com/cli-color-tty/download/cli-color-tty-2.0.0.tgz#36aab450210502aa22a596b3020b564e7e29b08b" 445 | dependencies: 446 | cli-color "^1.0.0" 447 | 448 | cli-color@^1.0.0: 449 | version "1.2.0" 450 | resolved "http://registry.npm.qima-inc.com/cli-color/download/cli-color-1.2.0.tgz#3a5ae74fd76b6267af666e69e2afbbd01def34d1" 451 | dependencies: 452 | ansi-regex "^2.1.1" 453 | d "1" 454 | es5-ext "^0.10.12" 455 | es6-iterator "2" 456 | memoizee "^0.4.3" 457 | timers-ext "0.1" 458 | 459 | cli-cursor@^2.1.0: 460 | version "2.1.0" 461 | resolved "http://registry.npm.qima-inc.com/cli-cursor/download/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 462 | dependencies: 463 | restore-cursor "^2.0.0" 464 | 465 | cli-spinners@^1.0.0: 466 | version "1.0.0" 467 | resolved "http://registry.npm.qima-inc.com/cli-spinners/download/cli-spinners-1.0.0.tgz#ef987ed3d48391ac3dab9180b406a742180d6e6a" 468 | 469 | cli-table@0.3.1, cli-table@^0.3.1: 470 | version "0.3.1" 471 | resolved "http://registry.npm.qima-inc.com/cli-table/download/cli-table-0.3.1.tgz#f53b05266a8b1a0b934b3d0821e6e2dc5914ae23" 472 | dependencies: 473 | colors "1.0.3" 474 | 475 | cli-width@^2.0.0: 476 | version "2.1.0" 477 | resolved "http://registry.npm.qima-inc.com/cli-width/download/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 478 | 479 | clone-stats@^0.0.1: 480 | version "0.0.1" 481 | resolved "http://registry.npm.qima-inc.com/clone-stats/download/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" 482 | 483 | clone@^1.0.0, clone@^1.0.2: 484 | version "1.0.2" 485 | resolved "http://registry.npm.qima-inc.com/clone/download/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 486 | 487 | cmd-shim@~2.0.2: 488 | version "2.0.2" 489 | resolved "http://registry.npm.qima-inc.com/cmd-shim/download/cmd-shim-2.0.2.tgz#6fcbda99483a8fd15d7d30a196ca69d688a2efdb" 490 | dependencies: 491 | graceful-fs "^4.1.2" 492 | mkdirp "~0.5.0" 493 | 494 | co@^4.6.0: 495 | version "4.6.0" 496 | resolved "http://registry.npm.qima-inc.com/co/download/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 497 | 498 | code-point-at@^1.0.0: 499 | version "1.1.0" 500 | resolved "http://registry.npm.qima-inc.com/code-point-at/download/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 501 | 502 | color-convert@^1.9.0: 503 | version "1.9.0" 504 | resolved "http://registry.npm.qima-inc.com/color-convert/download/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 505 | dependencies: 506 | color-name "^1.1.1" 507 | 508 | color-name@^1.1.1: 509 | version "1.1.3" 510 | resolved "http://registry.npm.qima-inc.com/color-name/download/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 511 | 512 | colors@1.0.3: 513 | version "1.0.3" 514 | resolved "http://registry.npm.qima-inc.com/colors/download/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 515 | 516 | columnify@~1.5.4: 517 | version "1.5.4" 518 | resolved "http://registry.npm.qima-inc.com/columnify/download/columnify-1.5.4.tgz#4737ddf1c7b69a8a7c340570782e947eec8e78bb" 519 | dependencies: 520 | strip-ansi "^3.0.0" 521 | wcwidth "^1.0.0" 522 | 523 | combined-stream@^1.0.5, combined-stream@~1.0.5: 524 | version "1.0.5" 525 | resolved "http://registry.npm.qima-inc.com/combined-stream/download/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 526 | dependencies: 527 | delayed-stream "~1.0.0" 528 | 529 | commander@2.11.x, commander@~2.11.0: 530 | version "2.11.0" 531 | resolved "http://registry.npm.qima-inc.com/commander/download/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 532 | 533 | commander@2.9.0, commander@^2.8.1: 534 | version "2.9.0" 535 | resolved "http://registry.npm.qima-inc.com/commander/download/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 536 | dependencies: 537 | graceful-readlink ">= 1.0.0" 538 | 539 | commander@~2.8.1: 540 | version "2.8.1" 541 | resolved "http://registry.npm.qima-inc.com/commander/download/commander-2.8.1.tgz#06be367febfda0c330aa1e2a072d3dc9762425d4" 542 | dependencies: 543 | graceful-readlink ">= 1.0.0" 544 | 545 | concat-map@0.0.1: 546 | version "0.0.1" 547 | resolved "http://registry.npm.qima-inc.com/concat-map/download/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 548 | 549 | concat-stream@^1.5.0, concat-stream@^1.5.2: 550 | version "1.6.0" 551 | resolved "http://registry.npm.qima-inc.com/concat-stream/download/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 552 | dependencies: 553 | inherits "^2.0.3" 554 | readable-stream "^2.2.2" 555 | typedarray "^0.0.6" 556 | 557 | conf@1.1.2: 558 | version "1.1.2" 559 | resolved "http://registry.npm.qima-inc.com/conf/download/conf-1.1.2.tgz#a164003022dd1643cd5abd9653071bd3b0a19f50" 560 | dependencies: 561 | dot-prop "^4.1.0" 562 | env-paths "^1.0.0" 563 | make-dir "^1.0.0" 564 | pkg-up "^2.0.0" 565 | 566 | config-chain@^1.1.11, config-chain@~1.1.11: 567 | version "1.1.11" 568 | resolved "http://registry.npm.qima-inc.com/config-chain/download/config-chain-1.1.11.tgz#aba09747dfbe4c3e70e766a6e41586e1859fc6f2" 569 | dependencies: 570 | ini "^1.3.4" 571 | proto-list "~1.2.1" 572 | 573 | configstore@^1.0.0: 574 | version "1.4.0" 575 | resolved "http://registry.npm.qima-inc.com/configstore/download/configstore-1.4.0.tgz#c35781d0501d268c25c54b8b17f6240e8a4fb021" 576 | dependencies: 577 | graceful-fs "^4.1.2" 578 | mkdirp "^0.5.0" 579 | object-assign "^4.0.1" 580 | os-tmpdir "^1.0.0" 581 | osenv "^0.1.0" 582 | uuid "^2.0.1" 583 | write-file-atomic "^1.1.2" 584 | xdg-basedir "^2.0.0" 585 | 586 | configstore@^3.0.0: 587 | version "3.1.1" 588 | resolved "http://registry.npm.qima-inc.com/configstore/download/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90" 589 | dependencies: 590 | dot-prop "^4.1.0" 591 | graceful-fs "^4.1.2" 592 | make-dir "^1.0.0" 593 | unique-string "^1.0.0" 594 | write-file-atomic "^2.0.0" 595 | xdg-basedir "^3.0.0" 596 | 597 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 598 | version "1.1.0" 599 | resolved "http://registry.npm.qima-inc.com/console-control-strings/download/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 600 | 601 | content-disposition@^0.5.2: 602 | version "0.5.2" 603 | resolved "http://registry.npm.qima-inc.com/content-disposition/download/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 604 | 605 | convert-source-map@^1.1.0, convert-source-map@^1.1.1: 606 | version "1.5.0" 607 | resolved "http://registry.npm.qima-inc.com/convert-source-map/download/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 608 | 609 | copy-concurrently@^1.0.0: 610 | version "1.0.5" 611 | resolved "http://registry.npm.qima-inc.com/copy-concurrently/download/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" 612 | dependencies: 613 | aproba "^1.1.1" 614 | fs-write-stream-atomic "^1.0.8" 615 | iferr "^0.1.5" 616 | mkdirp "^0.5.1" 617 | rimraf "^2.5.4" 618 | run-queue "^1.0.0" 619 | 620 | core-js@^2.4.0: 621 | version "2.4.1" 622 | resolved "http://registry.npm.qima-inc.com/core-js/download/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 623 | 624 | core-util-is@~1.0.0: 625 | version "1.0.2" 626 | resolved "http://registry.npm.qima-inc.com/core-util-is/download/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 627 | 628 | create-error-class@^3.0.0: 629 | version "3.0.2" 630 | resolved "http://registry.npm.qima-inc.com/create-error-class/download/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 631 | dependencies: 632 | capture-stack-trace "^1.0.0" 633 | 634 | cross-spawn@^5.0.1: 635 | version "5.1.0" 636 | resolved "http://registry.npm.qima-inc.com/cross-spawn/download/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 637 | dependencies: 638 | lru-cache "^4.0.1" 639 | shebang-command "^1.2.0" 640 | which "^1.2.9" 641 | 642 | cryptiles@2.x.x: 643 | version "2.0.5" 644 | resolved "http://registry.npm.qima-inc.com/cryptiles/download/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 645 | dependencies: 646 | boom "2.x.x" 647 | 648 | crypto-random-string@^1.0.0: 649 | version "1.0.0" 650 | resolved "http://registry.npm.qima-inc.com/crypto-random-string/download/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 651 | 652 | cyclist@~0.2.2: 653 | version "0.2.2" 654 | resolved "http://registry.npm.qima-inc.com/cyclist/download/cyclist-0.2.2.tgz#1b33792e11e914a2fd6d6ed6447464444e5fa640" 655 | 656 | d@1: 657 | version "1.0.0" 658 | resolved "http://registry.npm.qima-inc.com/d/download/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 659 | dependencies: 660 | es5-ext "^0.10.9" 661 | 662 | dashdash@^1.12.0: 663 | version "1.14.1" 664 | resolved "http://registry.npm.qima-inc.com/dashdash/download/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 665 | dependencies: 666 | assert-plus "^1.0.0" 667 | 668 | david@^11.0.0: 669 | version "11.0.0" 670 | resolved "http://registry.npm.qima-inc.com/david/download/david-11.0.0.tgz#039da9427072fb7767f4daa56a54eca24dcc2bc3" 671 | dependencies: 672 | async "^2.0.1" 673 | cli-color-tty "^2.0.0" 674 | cli-table "^0.3.1" 675 | exit "^0.1.2" 676 | minimist "^1.1.0" 677 | npm "^4.0.3" 678 | semver "^5.3.0" 679 | xtend "^4.0.0" 680 | 681 | debug@^2.1.1, debug@^2.2.0: 682 | version "2.6.8" 683 | resolved "http://registry.npm.qima-inc.com/debug/download/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 684 | dependencies: 685 | ms "2.0.0" 686 | 687 | debuglog@*, debuglog@^1.0.1: 688 | version "1.0.1" 689 | resolved "http://registry.npm.qima-inc.com/debuglog/download/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492" 690 | 691 | decompress-response@^3.2.0: 692 | version "3.3.0" 693 | resolved "http://registry.npm.qima-inc.com/decompress-response/download/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" 694 | dependencies: 695 | mimic-response "^1.0.0" 696 | 697 | decompress-tar@^4.0.0, decompress-tar@^4.1.0, decompress-tar@^4.1.1: 698 | version "4.1.1" 699 | resolved "http://registry.npm.qima-inc.com/decompress-tar/download/decompress-tar-4.1.1.tgz#718cbd3fcb16209716e70a26b84e7ba4592e5af1" 700 | dependencies: 701 | file-type "^5.2.0" 702 | is-stream "^1.1.0" 703 | tar-stream "^1.5.2" 704 | 705 | decompress-tarbz2@^4.0.0: 706 | version "4.1.0" 707 | resolved "http://registry.npm.qima-inc.com/decompress-tarbz2/download/decompress-tarbz2-4.1.0.tgz#fbab58d5de73f3fd213cac3af1c18334f51cb891" 708 | dependencies: 709 | decompress-tar "^4.1.0" 710 | file-type "^3.8.0" 711 | is-stream "^1.1.0" 712 | pify "^2.3.0" 713 | seek-bzip "^1.0.5" 714 | unbzip2-stream "^1.0.9" 715 | 716 | decompress-targz@^4.0.0: 717 | version "4.1.1" 718 | resolved "http://registry.npm.qima-inc.com/decompress-targz/download/decompress-targz-4.1.1.tgz#c09bc35c4d11f3de09f2d2da53e9de23e7ce1eee" 719 | dependencies: 720 | decompress-tar "^4.1.1" 721 | file-type "^5.2.0" 722 | is-stream "^1.1.0" 723 | 724 | decompress-unzip@^4.0.1: 725 | version "4.0.1" 726 | resolved "http://registry.npm.qima-inc.com/decompress-unzip/download/decompress-unzip-4.0.1.tgz#deaaccdfd14aeaf85578f733ae8210f9b4848f69" 727 | dependencies: 728 | file-type "^3.8.0" 729 | get-stream "^2.2.0" 730 | pify "^2.3.0" 731 | yauzl "^2.4.2" 732 | 733 | decompress@^4.0.0: 734 | version "4.2.0" 735 | resolved "http://registry.npm.qima-inc.com/decompress/download/decompress-4.2.0.tgz#7aedd85427e5a92dacfe55674a7c505e96d01f9d" 736 | dependencies: 737 | decompress-tar "^4.0.0" 738 | decompress-tarbz2 "^4.0.0" 739 | decompress-targz "^4.0.0" 740 | decompress-unzip "^4.0.1" 741 | graceful-fs "^4.1.10" 742 | make-dir "^1.0.0" 743 | pify "^2.3.0" 744 | strip-dirs "^2.0.0" 745 | 746 | deep-extend@~0.4.0: 747 | version "0.4.2" 748 | resolved "http://registry.npm.qima-inc.com/deep-extend/download/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 749 | 750 | defaults@^1.0.3: 751 | version "1.0.3" 752 | resolved "http://registry.npm.qima-inc.com/defaults/download/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 753 | dependencies: 754 | clone "^1.0.2" 755 | 756 | delayed-stream@~1.0.0: 757 | version "1.0.0" 758 | resolved "http://registry.npm.qima-inc.com/delayed-stream/download/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 759 | 760 | delegates@^1.0.0: 761 | version "1.0.0" 762 | resolved "http://registry.npm.qima-inc.com/delegates/download/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 763 | 764 | detect-indent@^4.0.0: 765 | version "4.0.0" 766 | resolved "http://registry.npm.qima-inc.com/detect-indent/download/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 767 | dependencies: 768 | repeating "^2.0.0" 769 | 770 | dezalgo@^1.0.0, dezalgo@^1.0.1, dezalgo@~1.0.3: 771 | version "1.0.3" 772 | resolved "http://registry.npm.qima-inc.com/dezalgo/download/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456" 773 | dependencies: 774 | asap "^2.0.0" 775 | wrappy "1" 776 | 777 | dot-prop@^4.1.0: 778 | version "4.2.0" 779 | resolved "http://registry.npm.qima-inc.com/dot-prop/download/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 780 | dependencies: 781 | is-obj "^1.0.0" 782 | 783 | download@6.2.5: 784 | version "6.2.5" 785 | resolved "http://registry.npm.qima-inc.com/download/download/download-6.2.5.tgz#acd6a542e4cd0bb42ca70cfc98c9e43b07039714" 786 | dependencies: 787 | caw "^2.0.0" 788 | content-disposition "^0.5.2" 789 | decompress "^4.0.0" 790 | ext-name "^5.0.0" 791 | file-type "5.2.0" 792 | filenamify "^2.0.0" 793 | get-stream "^3.0.0" 794 | got "^7.0.0" 795 | make-dir "^1.0.0" 796 | p-event "^1.0.0" 797 | pify "^3.0.0" 798 | 799 | duplexer3@^0.1.4: 800 | version "0.1.4" 801 | resolved "http://registry.npm.qima-inc.com/duplexer3/download/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 802 | 803 | duplexer@~0.1.1: 804 | version "0.1.1" 805 | resolved "http://registry.npm.qima-inc.com/duplexer/download/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 806 | 807 | duplexify@^3.1.2, duplexify@^3.2.0, duplexify@^3.4.2: 808 | version "3.5.0" 809 | resolved "http://registry.npm.qima-inc.com/duplexify/download/duplexify-3.5.0.tgz#1aa773002e1578457e9d9d4a50b0ccaaebcbd604" 810 | dependencies: 811 | end-of-stream "1.0.0" 812 | inherits "^2.0.1" 813 | readable-stream "^2.0.0" 814 | stream-shift "^1.0.0" 815 | 816 | ecc-jsbn@~0.1.1: 817 | version "0.1.1" 818 | resolved "http://registry.npm.qima-inc.com/ecc-jsbn/download/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 819 | dependencies: 820 | jsbn "~0.1.0" 821 | 822 | editor@~1.0.0: 823 | version "1.0.0" 824 | resolved "http://registry.npm.qima-inc.com/editor/download/editor-1.0.0.tgz#60c7f87bd62bcc6a894fa8ccd6afb7823a24f742" 825 | 826 | ejs@2.5.7: 827 | version "2.5.7" 828 | resolved "http://registry.npm.qima-inc.com/ejs/download/ejs-2.5.7.tgz#cc872c168880ae3c7189762fd5ffc00896c9518a" 829 | 830 | end-of-stream@1.0.0, end-of-stream@^1.0.0: 831 | version "1.0.0" 832 | resolved "http://registry.npm.qima-inc.com/end-of-stream/download/end-of-stream-1.0.0.tgz#d4596e702734a93e40e9af864319eabd99ff2f0e" 833 | dependencies: 834 | once "~1.3.0" 835 | 836 | end-of-stream@^1.1.0: 837 | version "1.4.0" 838 | resolved "http://registry.npm.qima-inc.com/end-of-stream/download/end-of-stream-1.4.0.tgz#7a90d833efda6cfa6eac0f4949dbb0fad3a63206" 839 | dependencies: 840 | once "^1.4.0" 841 | 842 | env-paths@^1.0.0: 843 | version "1.0.0" 844 | resolved "http://registry.npm.qima-inc.com/env-paths/download/env-paths-1.0.0.tgz#4168133b42bb05c38a35b1ae4397c8298ab369e0" 845 | 846 | es5-ext@^0.10.12, es5-ext@^0.10.14, es5-ext@^0.10.30, es5-ext@^0.10.9, es5-ext@~0.10.14, es5-ext@~0.10.2: 847 | version "0.10.30" 848 | resolved "http://registry.npm.qima-inc.com/es5-ext/download/es5-ext-0.10.30.tgz#7141a16836697dbabfaaaeee41495ce29f52c939" 849 | dependencies: 850 | es6-iterator "2" 851 | es6-symbol "~3.1" 852 | 853 | es6-iterator@2, es6-iterator@^2.0.1: 854 | version "2.0.1" 855 | resolved "http://registry.npm.qima-inc.com/es6-iterator/download/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 856 | dependencies: 857 | d "1" 858 | es5-ext "^0.10.14" 859 | es6-symbol "^3.1" 860 | 861 | es6-promise@^3.0.2: 862 | version "3.3.1" 863 | resolved "http://registry.npm.qima-inc.com/es6-promise/download/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" 864 | 865 | es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1: 866 | version "3.1.1" 867 | resolved "http://registry.npm.qima-inc.com/es6-symbol/download/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 868 | dependencies: 869 | d "1" 870 | es5-ext "~0.10.14" 871 | 872 | es6-weak-map@^2.0.2: 873 | version "2.0.2" 874 | resolved "http://registry.npm.qima-inc.com/es6-weak-map/download/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 875 | dependencies: 876 | d "1" 877 | es5-ext "^0.10.14" 878 | es6-iterator "^2.0.1" 879 | es6-symbol "^3.1.1" 880 | 881 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 882 | version "1.0.5" 883 | resolved "http://registry.npm.qima-inc.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 884 | 885 | esutils@^2.0.2: 886 | version "2.0.2" 887 | resolved "http://registry.npm.qima-inc.com/esutils/download/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 888 | 889 | event-emitter@^0.3.5: 890 | version "0.3.5" 891 | resolved "http://registry.npm.qima-inc.com/event-emitter/download/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 892 | dependencies: 893 | d "1" 894 | es5-ext "~0.10.14" 895 | 896 | event-stream@~3.3.0: 897 | version "3.3.4" 898 | resolved "http://registry.npm.qima-inc.com/event-stream/download/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 899 | dependencies: 900 | duplexer "~0.1.1" 901 | from "~0" 902 | map-stream "~0.1.0" 903 | pause-stream "0.0.11" 904 | split "0.3" 905 | stream-combiner "~0.0.4" 906 | through "~2.3.1" 907 | 908 | execa@^0.7.0: 909 | version "0.7.0" 910 | resolved "http://registry.npm.qima-inc.com/execa/download/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 911 | dependencies: 912 | cross-spawn "^5.0.1" 913 | get-stream "^3.0.0" 914 | is-stream "^1.1.0" 915 | npm-run-path "^2.0.0" 916 | p-finally "^1.0.0" 917 | signal-exit "^3.0.0" 918 | strip-eof "^1.0.0" 919 | 920 | exit@^0.1.2: 921 | version "0.1.2" 922 | resolved "http://registry.npm.qima-inc.com/exit/download/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 923 | 924 | expand-brackets@^0.1.4: 925 | version "0.1.5" 926 | resolved "http://registry.npm.qima-inc.com/expand-brackets/download/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 927 | dependencies: 928 | is-posix-bracket "^0.1.0" 929 | 930 | expand-range@^1.8.1: 931 | version "1.8.2" 932 | resolved "http://registry.npm.qima-inc.com/expand-range/download/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 933 | dependencies: 934 | fill-range "^2.1.0" 935 | 936 | ext-list@^2.0.0: 937 | version "2.2.2" 938 | resolved "http://registry.npm.qima-inc.com/ext-list/download/ext-list-2.2.2.tgz#0b98e64ed82f5acf0f2931babf69212ef52ddd37" 939 | dependencies: 940 | mime-db "^1.28.0" 941 | 942 | ext-name@^5.0.0: 943 | version "5.0.0" 944 | resolved "http://registry.npm.qima-inc.com/ext-name/download/ext-name-5.0.0.tgz#70781981d183ee15d13993c8822045c506c8f0a6" 945 | dependencies: 946 | ext-list "^2.0.0" 947 | sort-keys-length "^1.0.0" 948 | 949 | extend-shallow@^2.0.1: 950 | version "2.0.1" 951 | resolved "http://registry.npm.qima-inc.com/extend-shallow/download/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 952 | dependencies: 953 | is-extendable "^0.1.0" 954 | 955 | extend@^3.0.0, extend@~3.0.0: 956 | version "3.0.1" 957 | resolved "http://registry.npm.qima-inc.com/extend/download/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 958 | 959 | external-editor@^2.0.4: 960 | version "2.0.4" 961 | resolved "http://registry.npm.qima-inc.com/external-editor/download/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" 962 | dependencies: 963 | iconv-lite "^0.4.17" 964 | jschardet "^1.4.2" 965 | tmp "^0.0.31" 966 | 967 | extglob@^0.3.1: 968 | version "0.3.2" 969 | resolved "http://registry.npm.qima-inc.com/extglob/download/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 970 | dependencies: 971 | is-extglob "^1.0.0" 972 | 973 | extsprintf@1.0.2: 974 | version "1.0.2" 975 | resolved "http://registry.npm.qima-inc.com/extsprintf/download/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 976 | 977 | fd-slicer@~1.0.1: 978 | version "1.0.1" 979 | resolved "http://registry.npm.qima-inc.com/fd-slicer/download/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65" 980 | dependencies: 981 | pend "~1.2.0" 982 | 983 | figures@^2.0.0: 984 | version "2.0.0" 985 | resolved "http://registry.npm.qima-inc.com/figures/download/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 986 | dependencies: 987 | escape-string-regexp "^1.0.5" 988 | 989 | file-type@5.2.0, file-type@^5.2.0: 990 | version "5.2.0" 991 | resolved "http://registry.npm.qima-inc.com/file-type/download/file-type-5.2.0.tgz#2ddbea7c73ffe36368dfae49dc338c058c2b8ad6" 992 | 993 | file-type@^3.8.0: 994 | version "3.9.0" 995 | resolved "http://registry.npm.qima-inc.com/file-type/download/file-type-3.9.0.tgz#257a078384d1db8087bc449d107d52a52672b9e9" 996 | 997 | filename-regex@^2.0.0: 998 | version "2.0.1" 999 | resolved "http://registry.npm.qima-inc.com/filename-regex/download/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1000 | 1001 | filename-reserved-regex@^2.0.0: 1002 | version "2.0.0" 1003 | resolved "http://registry.npm.qima-inc.com/filename-reserved-regex/download/filename-reserved-regex-2.0.0.tgz#abf73dfab735d045440abfea2d91f389ebbfa229" 1004 | 1005 | filenamify@^2.0.0: 1006 | version "2.0.0" 1007 | resolved "http://registry.npm.qima-inc.com/filenamify/download/filenamify-2.0.0.tgz#bd162262c0b6e94bfbcdcf19a3bbb3764f785695" 1008 | dependencies: 1009 | filename-reserved-regex "^2.0.0" 1010 | strip-outer "^1.0.0" 1011 | trim-repeated "^1.0.0" 1012 | 1013 | fill-range@^2.1.0: 1014 | version "2.2.3" 1015 | resolved "http://registry.npm.qima-inc.com/fill-range/download/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1016 | dependencies: 1017 | is-number "^2.1.0" 1018 | isobject "^2.0.0" 1019 | randomatic "^1.1.3" 1020 | repeat-element "^1.1.2" 1021 | repeat-string "^1.5.2" 1022 | 1023 | find-up@^2.1.0: 1024 | version "2.1.0" 1025 | resolved "http://registry.npm.qima-inc.com/find-up/download/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1026 | dependencies: 1027 | locate-path "^2.0.0" 1028 | 1029 | first-chunk-stream@^1.0.0: 1030 | version "1.0.0" 1031 | resolved "http://registry.npm.qima-inc.com/first-chunk-stream/download/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" 1032 | 1033 | flush-write-stream@^1.0.0: 1034 | version "1.0.2" 1035 | resolved "http://registry.npm.qima-inc.com/flush-write-stream/download/flush-write-stream-1.0.2.tgz#c81b90d8746766f1a609a46809946c45dd8ae417" 1036 | dependencies: 1037 | inherits "^2.0.1" 1038 | readable-stream "^2.0.4" 1039 | 1040 | for-in@^1.0.1: 1041 | version "1.0.2" 1042 | resolved "http://registry.npm.qima-inc.com/for-in/download/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1043 | 1044 | for-own@^0.1.4: 1045 | version "0.1.5" 1046 | resolved "http://registry.npm.qima-inc.com/for-own/download/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1047 | dependencies: 1048 | for-in "^1.0.1" 1049 | 1050 | forever-agent@~0.6.1: 1051 | version "0.6.1" 1052 | resolved "http://registry.npm.qima-inc.com/forever-agent/download/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1053 | 1054 | form-data@~2.1.1: 1055 | version "2.1.4" 1056 | resolved "http://registry.npm.qima-inc.com/form-data/download/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1057 | dependencies: 1058 | asynckit "^0.4.0" 1059 | combined-stream "^1.0.5" 1060 | mime-types "^2.1.12" 1061 | 1062 | from2@^1.3.0: 1063 | version "1.3.0" 1064 | resolved "http://registry.npm.qima-inc.com/from2/download/from2-1.3.0.tgz#88413baaa5f9a597cfde9221d86986cd3c061dfd" 1065 | dependencies: 1066 | inherits "~2.0.1" 1067 | readable-stream "~1.1.10" 1068 | 1069 | from2@^2.1.0: 1070 | version "2.3.0" 1071 | resolved "http://registry.npm.qima-inc.com/from2/download/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" 1072 | dependencies: 1073 | inherits "^2.0.1" 1074 | readable-stream "^2.0.0" 1075 | 1076 | from@~0: 1077 | version "0.1.7" 1078 | resolved "http://registry.npm.qima-inc.com/from/download/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" 1079 | 1080 | fs-extra@4.0.1: 1081 | version "4.0.1" 1082 | resolved "http://registry.npm.qima-inc.com/fs-extra/download/fs-extra-4.0.1.tgz#7fc0c6c8957f983f57f306a24e5b9ddd8d0dd880" 1083 | dependencies: 1084 | graceful-fs "^4.1.2" 1085 | jsonfile "^3.0.0" 1086 | universalify "^0.1.0" 1087 | 1088 | fs-readdir-recursive@^1.0.0: 1089 | version "1.0.0" 1090 | resolved "http://registry.npm.qima-inc.com/fs-readdir-recursive/download/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1091 | 1092 | fs-vacuum@~1.2.10: 1093 | version "1.2.10" 1094 | resolved "http://registry.npm.qima-inc.com/fs-vacuum/download/fs-vacuum-1.2.10.tgz#b7629bec07a4031a2548fdf99f5ecf1cc8b31e36" 1095 | dependencies: 1096 | graceful-fs "^4.1.2" 1097 | path-is-inside "^1.0.1" 1098 | rimraf "^2.5.2" 1099 | 1100 | fs-write-stream-atomic@^1.0.8, fs-write-stream-atomic@~1.0.10: 1101 | version "1.0.10" 1102 | resolved "http://registry.npm.qima-inc.com/fs-write-stream-atomic/download/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" 1103 | dependencies: 1104 | graceful-fs "^4.1.2" 1105 | iferr "^0.1.5" 1106 | imurmurhash "^0.1.4" 1107 | readable-stream "1 || 2" 1108 | 1109 | fs.realpath@^1.0.0: 1110 | version "1.0.0" 1111 | resolved "http://registry.npm.qima-inc.com/fs.realpath/download/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1112 | 1113 | fsevents@^1.0.0: 1114 | version "1.1.2" 1115 | resolved "http://registry.npm.qima-inc.com/fsevents/download/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1116 | dependencies: 1117 | nan "^2.3.0" 1118 | node-pre-gyp "^0.6.36" 1119 | 1120 | fstream-ignore@^1.0.0, fstream-ignore@^1.0.5: 1121 | version "1.0.5" 1122 | resolved "http://registry.npm.qima-inc.com/fstream-ignore/download/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1123 | dependencies: 1124 | fstream "^1.0.0" 1125 | inherits "2" 1126 | minimatch "^3.0.0" 1127 | 1128 | fstream-npm@~1.2.0: 1129 | version "1.2.1" 1130 | resolved "http://registry.npm.qima-inc.com/fstream-npm/download/fstream-npm-1.2.1.tgz#08c4a452f789dcbac4c89a4563c902b2c862fd5b" 1131 | dependencies: 1132 | fstream-ignore "^1.0.0" 1133 | inherits "2" 1134 | 1135 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2, fstream@~1.0.11: 1136 | version "1.0.11" 1137 | resolved "http://registry.npm.qima-inc.com/fstream/download/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1138 | dependencies: 1139 | graceful-fs "^4.1.2" 1140 | inherits "~2.0.0" 1141 | mkdirp ">=0.5 0" 1142 | rimraf "2" 1143 | 1144 | gauge@~2.7.1, gauge@~2.7.3: 1145 | version "2.7.4" 1146 | resolved "http://registry.npm.qima-inc.com/gauge/download/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1147 | dependencies: 1148 | aproba "^1.0.3" 1149 | console-control-strings "^1.0.0" 1150 | has-unicode "^2.0.0" 1151 | object-assign "^4.1.0" 1152 | signal-exit "^3.0.0" 1153 | string-width "^1.0.1" 1154 | strip-ansi "^3.0.1" 1155 | wide-align "^1.1.0" 1156 | 1157 | get-proxy@^2.0.0: 1158 | version "2.1.0" 1159 | resolved "http://registry.npm.qima-inc.com/get-proxy/download/get-proxy-2.1.0.tgz#349f2b4d91d44c4d4d4e9cba2ad90143fac5ef93" 1160 | dependencies: 1161 | npm-conf "^1.1.0" 1162 | 1163 | get-stream@^2.2.0: 1164 | version "2.3.1" 1165 | resolved "http://registry.npm.qima-inc.com/get-stream/download/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" 1166 | dependencies: 1167 | object-assign "^4.0.1" 1168 | pinkie-promise "^2.0.0" 1169 | 1170 | get-stream@^3.0.0: 1171 | version "3.0.0" 1172 | resolved "http://registry.npm.qima-inc.com/get-stream/download/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1173 | 1174 | getpass@^0.1.1: 1175 | version "0.1.7" 1176 | resolved "http://registry.npm.qima-inc.com/getpass/download/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1177 | dependencies: 1178 | assert-plus "^1.0.0" 1179 | 1180 | glob-base@^0.3.0: 1181 | version "0.3.0" 1182 | resolved "http://registry.npm.qima-inc.com/glob-base/download/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1183 | dependencies: 1184 | glob-parent "^2.0.0" 1185 | is-glob "^2.0.0" 1186 | 1187 | glob-parent@^2.0.0: 1188 | version "2.0.0" 1189 | resolved "http://registry.npm.qima-inc.com/glob-parent/download/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1190 | dependencies: 1191 | is-glob "^2.0.0" 1192 | 1193 | glob-parent@^3.0.0: 1194 | version "3.1.0" 1195 | resolved "http://registry.npm.qima-inc.com/glob-parent/download/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1196 | dependencies: 1197 | is-glob "^3.1.0" 1198 | path-dirname "^1.0.0" 1199 | 1200 | glob-stream@^5.3.2: 1201 | version "5.3.5" 1202 | resolved "http://registry.npm.qima-inc.com/glob-stream/download/glob-stream-5.3.5.tgz#a55665a9a8ccdc41915a87c701e32d4e016fad22" 1203 | dependencies: 1204 | extend "^3.0.0" 1205 | glob "^5.0.3" 1206 | glob-parent "^3.0.0" 1207 | micromatch "^2.3.7" 1208 | ordered-read-streams "^0.3.0" 1209 | through2 "^0.6.0" 1210 | to-absolute-glob "^0.1.1" 1211 | unique-stream "^2.0.2" 1212 | 1213 | glob@^5.0.3: 1214 | version "5.0.15" 1215 | resolved "http://registry.npm.qima-inc.com/glob/download/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1216 | dependencies: 1217 | inflight "^1.0.4" 1218 | inherits "2" 1219 | minimatch "2 || 3" 1220 | once "^1.3.0" 1221 | path-is-absolute "^1.0.0" 1222 | 1223 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@~7.1.1: 1224 | version "7.1.2" 1225 | resolved "http://registry.npm.qima-inc.com/glob/download/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1226 | dependencies: 1227 | fs.realpath "^1.0.0" 1228 | inflight "^1.0.4" 1229 | inherits "2" 1230 | minimatch "^3.0.4" 1231 | once "^1.3.0" 1232 | path-is-absolute "^1.0.0" 1233 | 1234 | globals@^9.0.0: 1235 | version "9.18.0" 1236 | resolved "http://registry.npm.qima-inc.com/globals/download/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1237 | 1238 | got@^3.2.0: 1239 | version "3.3.1" 1240 | resolved "http://registry.npm.qima-inc.com/got/download/got-3.3.1.tgz#e5d0ed4af55fc3eef4d56007769d98192bcb2eca" 1241 | dependencies: 1242 | duplexify "^3.2.0" 1243 | infinity-agent "^2.0.0" 1244 | is-redirect "^1.0.0" 1245 | is-stream "^1.0.0" 1246 | lowercase-keys "^1.0.0" 1247 | nested-error-stacks "^1.0.0" 1248 | object-assign "^3.0.0" 1249 | prepend-http "^1.0.0" 1250 | read-all-stream "^3.0.0" 1251 | timed-out "^2.0.0" 1252 | 1253 | got@^6.7.1: 1254 | version "6.7.1" 1255 | resolved "http://registry.npm.qima-inc.com/got/download/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1256 | dependencies: 1257 | create-error-class "^3.0.0" 1258 | duplexer3 "^0.1.4" 1259 | get-stream "^3.0.0" 1260 | is-redirect "^1.0.0" 1261 | is-retry-allowed "^1.0.0" 1262 | is-stream "^1.0.0" 1263 | lowercase-keys "^1.0.0" 1264 | safe-buffer "^5.0.1" 1265 | timed-out "^4.0.0" 1266 | unzip-response "^2.0.1" 1267 | url-parse-lax "^1.0.0" 1268 | 1269 | got@^7.0.0: 1270 | version "7.1.0" 1271 | resolved "http://registry.npm.qima-inc.com/got/download/got-7.1.0.tgz#05450fd84094e6bbea56f451a43a9c289166385a" 1272 | dependencies: 1273 | decompress-response "^3.2.0" 1274 | duplexer3 "^0.1.4" 1275 | get-stream "^3.0.0" 1276 | is-plain-obj "^1.1.0" 1277 | is-retry-allowed "^1.0.0" 1278 | is-stream "^1.0.0" 1279 | isurl "^1.0.0-alpha5" 1280 | lowercase-keys "^1.0.0" 1281 | p-cancelable "^0.3.0" 1282 | p-timeout "^1.1.1" 1283 | safe-buffer "^5.0.1" 1284 | timed-out "^4.0.0" 1285 | url-parse-lax "^1.0.0" 1286 | url-to-options "^1.0.1" 1287 | 1288 | graceful-fs@^4.0.0, graceful-fs@^4.1.10, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6, graceful-fs@~4.1.11: 1289 | version "4.1.11" 1290 | resolved "http://registry.npm.qima-inc.com/graceful-fs/download/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1291 | 1292 | "graceful-readlink@>= 1.0.0": 1293 | version "1.0.1" 1294 | resolved "http://registry.npm.qima-inc.com/graceful-readlink/download/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1295 | 1296 | gulp-sourcemaps@1.6.0: 1297 | version "1.6.0" 1298 | resolved "http://registry.npm.qima-inc.com/gulp-sourcemaps/download/gulp-sourcemaps-1.6.0.tgz#b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c" 1299 | dependencies: 1300 | convert-source-map "^1.1.1" 1301 | graceful-fs "^4.1.2" 1302 | strip-bom "^2.0.0" 1303 | through2 "^2.0.0" 1304 | vinyl "^1.0.0" 1305 | 1306 | har-schema@^1.0.5: 1307 | version "1.0.5" 1308 | resolved "http://registry.npm.qima-inc.com/har-schema/download/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1309 | 1310 | har-validator@~4.2.1: 1311 | version "4.2.1" 1312 | resolved "http://registry.npm.qima-inc.com/har-validator/download/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1313 | dependencies: 1314 | ajv "^4.9.1" 1315 | har-schema "^1.0.5" 1316 | 1317 | has-ansi@^2.0.0: 1318 | version "2.0.0" 1319 | resolved "http://registry.npm.qima-inc.com/has-ansi/download/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1320 | dependencies: 1321 | ansi-regex "^2.0.0" 1322 | 1323 | has-flag@^2.0.0: 1324 | version "2.0.0" 1325 | resolved "http://registry.npm.qima-inc.com/has-flag/download/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1326 | 1327 | has-symbol-support-x@^1.4.0: 1328 | version "1.4.0" 1329 | resolved "http://registry.npm.qima-inc.com/has-symbol-support-x/download/has-symbol-support-x-1.4.0.tgz#442d89b1d0ac6cf5ff2f7b916ee539869b93a256" 1330 | 1331 | has-to-string-tag-x@^1.2.0: 1332 | version "1.4.0" 1333 | resolved "http://registry.npm.qima-inc.com/has-to-string-tag-x/download/has-to-string-tag-x-1.4.0.tgz#49d7bcde85c2409be38ac327e3e119a451657c7b" 1334 | dependencies: 1335 | has-symbol-support-x "^1.4.0" 1336 | 1337 | has-unicode@^2.0.0, has-unicode@~2.0.1: 1338 | version "2.0.1" 1339 | resolved "http://registry.npm.qima-inc.com/has-unicode/download/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1340 | 1341 | hawk@~3.1.3: 1342 | version "3.1.3" 1343 | resolved "http://registry.npm.qima-inc.com/hawk/download/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1344 | dependencies: 1345 | boom "2.x.x" 1346 | cryptiles "2.x.x" 1347 | hoek "2.x.x" 1348 | sntp "1.x.x" 1349 | 1350 | he@1.1.x: 1351 | version "1.1.1" 1352 | resolved "http://registry.npm.qima-inc.com/he/download/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1353 | 1354 | hoek@2.x.x: 1355 | version "2.16.3" 1356 | resolved "http://registry.npm.qima-inc.com/hoek/download/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1357 | 1358 | home-or-tmp@^2.0.0: 1359 | version "2.0.0" 1360 | resolved "http://registry.npm.qima-inc.com/home-or-tmp/download/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1361 | dependencies: 1362 | os-homedir "^1.0.0" 1363 | os-tmpdir "^1.0.1" 1364 | 1365 | hosted-git-info@^2.1.4, hosted-git-info@^2.1.5, hosted-git-info@~2.4.2: 1366 | version "2.4.2" 1367 | resolved "http://registry.npm.qima-inc.com/hosted-git-info/download/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1368 | 1369 | html-minifier@3.5.3: 1370 | version "3.5.3" 1371 | resolved "http://registry.npm.qima-inc.com/html-minifier/download/html-minifier-3.5.3.tgz#4a275e3b1a16639abb79b4c11191ff0d0fcf1ab9" 1372 | dependencies: 1373 | camel-case "3.0.x" 1374 | clean-css "4.1.x" 1375 | commander "2.11.x" 1376 | he "1.1.x" 1377 | ncname "1.0.x" 1378 | param-case "2.1.x" 1379 | relateurl "0.2.x" 1380 | uglify-js "3.0.x" 1381 | 1382 | http-signature@~1.1.0: 1383 | version "1.1.1" 1384 | resolved "http://registry.npm.qima-inc.com/http-signature/download/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1385 | dependencies: 1386 | assert-plus "^0.2.0" 1387 | jsprim "^1.2.2" 1388 | sshpk "^1.7.0" 1389 | 1390 | iconv-lite@^0.4.17: 1391 | version "0.4.18" 1392 | resolved "http://registry.npm.qima-inc.com/iconv-lite/download/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2" 1393 | 1394 | ieee754@^1.1.4: 1395 | version "1.1.8" 1396 | resolved "http://registry.npm.qima-inc.com/ieee754/download/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1397 | 1398 | iferr@^0.1.5, iferr@~0.1.5: 1399 | version "0.1.5" 1400 | resolved "http://registry.npm.qima-inc.com/iferr/download/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" 1401 | 1402 | ignore-by-default@^1.0.0: 1403 | version "1.0.1" 1404 | resolved "http://registry.npm.qima-inc.com/ignore-by-default/download/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1405 | 1406 | imurmurhash@*, imurmurhash@^0.1.4: 1407 | version "0.1.4" 1408 | resolved "http://registry.npm.qima-inc.com/imurmurhash/download/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1409 | 1410 | infinity-agent@^2.0.0: 1411 | version "2.0.3" 1412 | resolved "http://registry.npm.qima-inc.com/infinity-agent/download/infinity-agent-2.0.3.tgz#45e0e2ff7a9eb030b27d62b74b3744b7a7ac4216" 1413 | 1414 | inflight@^1.0.4, inflight@~1.0.6: 1415 | version "1.0.6" 1416 | resolved "http://registry.npm.qima-inc.com/inflight/download/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1417 | dependencies: 1418 | once "^1.3.0" 1419 | wrappy "1" 1420 | 1421 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1422 | version "2.0.3" 1423 | resolved "http://registry.npm.qima-inc.com/inherits/download/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1424 | 1425 | ini@^1.3.4, ini@~1.3.0, ini@~1.3.4: 1426 | version "1.3.4" 1427 | resolved "http://registry.npm.qima-inc.com/ini/download/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1428 | 1429 | init-package-json@~1.10.1: 1430 | version "1.10.1" 1431 | resolved "http://registry.npm.qima-inc.com/init-package-json/download/init-package-json-1.10.1.tgz#cd873a167796befb99612b28762a0b6393fd8f6a" 1432 | dependencies: 1433 | glob "^7.1.1" 1434 | npm-package-arg "^4.0.0 || ^5.0.0" 1435 | promzard "^0.3.0" 1436 | read "~1.0.1" 1437 | read-package-json "1 || 2" 1438 | semver "2.x || 3.x || 4 || 5" 1439 | validate-npm-package-license "^3.0.1" 1440 | validate-npm-package-name "^3.0.0" 1441 | 1442 | inquirer@3.2.1: 1443 | version "3.2.1" 1444 | resolved "http://registry.npm.qima-inc.com/inquirer/download/inquirer-3.2.1.tgz#06ceb0f540f45ca548c17d6840959878265fa175" 1445 | dependencies: 1446 | ansi-escapes "^2.0.0" 1447 | chalk "^2.0.0" 1448 | cli-cursor "^2.1.0" 1449 | cli-width "^2.0.0" 1450 | external-editor "^2.0.4" 1451 | figures "^2.0.0" 1452 | lodash "^4.3.0" 1453 | mute-stream "0.0.7" 1454 | run-async "^2.2.0" 1455 | rx-lite "^4.0.8" 1456 | rx-lite-aggregates "^4.0.8" 1457 | string-width "^2.1.0" 1458 | strip-ansi "^4.0.0" 1459 | through "^2.3.6" 1460 | 1461 | interpret@^1.0.0: 1462 | version "1.0.3" 1463 | resolved "http://registry.npm.qima-inc.com/interpret/download/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 1464 | 1465 | invariant@^2.2.0: 1466 | version "2.2.2" 1467 | resolved "http://registry.npm.qima-inc.com/invariant/download/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1468 | dependencies: 1469 | loose-envify "^1.0.0" 1470 | 1471 | is-binary-path@^1.0.0: 1472 | version "1.0.1" 1473 | resolved "http://registry.npm.qima-inc.com/is-binary-path/download/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1474 | dependencies: 1475 | binary-extensions "^1.0.0" 1476 | 1477 | is-buffer@^1.1.5: 1478 | version "1.1.5" 1479 | resolved "http://registry.npm.qima-inc.com/is-buffer/download/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1480 | 1481 | is-builtin-module@^1.0.0: 1482 | version "1.0.0" 1483 | resolved "http://registry.npm.qima-inc.com/is-builtin-module/download/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1484 | dependencies: 1485 | builtin-modules "^1.0.0" 1486 | 1487 | is-dotfile@^1.0.0: 1488 | version "1.0.3" 1489 | resolved "http://registry.npm.qima-inc.com/is-dotfile/download/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1490 | 1491 | is-equal-shallow@^0.1.3: 1492 | version "0.1.3" 1493 | resolved "http://registry.npm.qima-inc.com/is-equal-shallow/download/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1494 | dependencies: 1495 | is-primitive "^2.0.0" 1496 | 1497 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1498 | version "0.1.1" 1499 | resolved "http://registry.npm.qima-inc.com/is-extendable/download/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1500 | 1501 | is-extglob@^1.0.0: 1502 | version "1.0.0" 1503 | resolved "http://registry.npm.qima-inc.com/is-extglob/download/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1504 | 1505 | is-extglob@^2.1.0: 1506 | version "2.1.1" 1507 | resolved "http://registry.npm.qima-inc.com/is-extglob/download/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1508 | 1509 | is-finite@^1.0.0: 1510 | version "1.0.2" 1511 | resolved "http://registry.npm.qima-inc.com/is-finite/download/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1512 | dependencies: 1513 | number-is-nan "^1.0.0" 1514 | 1515 | is-fullwidth-code-point@^1.0.0: 1516 | version "1.0.0" 1517 | resolved "http://registry.npm.qima-inc.com/is-fullwidth-code-point/download/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1518 | dependencies: 1519 | number-is-nan "^1.0.0" 1520 | 1521 | is-fullwidth-code-point@^2.0.0: 1522 | version "2.0.0" 1523 | resolved "http://registry.npm.qima-inc.com/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1524 | 1525 | is-glob@^2.0.0, is-glob@^2.0.1: 1526 | version "2.0.1" 1527 | resolved "http://registry.npm.qima-inc.com/is-glob/download/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1528 | dependencies: 1529 | is-extglob "^1.0.0" 1530 | 1531 | is-glob@^3.1.0: 1532 | version "3.1.0" 1533 | resolved "http://registry.npm.qima-inc.com/is-glob/download/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1534 | dependencies: 1535 | is-extglob "^2.1.0" 1536 | 1537 | is-natural-number@^4.0.1: 1538 | version "4.0.1" 1539 | resolved "http://registry.npm.qima-inc.com/is-natural-number/download/is-natural-number-4.0.1.tgz#ab9d76e1db4ced51e35de0c72ebecf09f734cde8" 1540 | 1541 | is-npm@^1.0.0: 1542 | version "1.0.0" 1543 | resolved "http://registry.npm.qima-inc.com/is-npm/download/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1544 | 1545 | is-number@^2.1.0: 1546 | version "2.1.0" 1547 | resolved "http://registry.npm.qima-inc.com/is-number/download/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1548 | dependencies: 1549 | kind-of "^3.0.2" 1550 | 1551 | is-number@^3.0.0: 1552 | version "3.0.0" 1553 | resolved "http://registry.npm.qima-inc.com/is-number/download/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1554 | dependencies: 1555 | kind-of "^3.0.2" 1556 | 1557 | is-obj@^1.0.0: 1558 | version "1.0.1" 1559 | resolved "http://registry.npm.qima-inc.com/is-obj/download/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1560 | 1561 | is-object@^1.0.1: 1562 | version "1.0.1" 1563 | resolved "http://registry.npm.qima-inc.com/is-object/download/is-object-1.0.1.tgz#8952688c5ec2ffd6b03ecc85e769e02903083470" 1564 | 1565 | is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: 1566 | version "1.1.0" 1567 | resolved "http://registry.npm.qima-inc.com/is-plain-obj/download/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1568 | 1569 | is-posix-bracket@^0.1.0: 1570 | version "0.1.1" 1571 | resolved "http://registry.npm.qima-inc.com/is-posix-bracket/download/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1572 | 1573 | is-primitive@^2.0.0: 1574 | version "2.0.0" 1575 | resolved "http://registry.npm.qima-inc.com/is-primitive/download/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1576 | 1577 | is-promise@^2.1, is-promise@^2.1.0: 1578 | version "2.1.0" 1579 | resolved "http://registry.npm.qima-inc.com/is-promise/download/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1580 | 1581 | is-redirect@^1.0.0: 1582 | version "1.0.0" 1583 | resolved "http://registry.npm.qima-inc.com/is-redirect/download/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1584 | 1585 | is-retry-allowed@^1.0.0: 1586 | version "1.1.0" 1587 | resolved "http://registry.npm.qima-inc.com/is-retry-allowed/download/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 1588 | 1589 | is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0: 1590 | version "1.1.0" 1591 | resolved "http://registry.npm.qima-inc.com/is-stream/download/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1592 | 1593 | is-typedarray@~1.0.0: 1594 | version "1.0.0" 1595 | resolved "http://registry.npm.qima-inc.com/is-typedarray/download/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1596 | 1597 | is-utf8@^0.2.0: 1598 | version "0.2.1" 1599 | resolved "http://registry.npm.qima-inc.com/is-utf8/download/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1600 | 1601 | is-valid-glob@^0.3.0: 1602 | version "0.3.0" 1603 | resolved "http://registry.npm.qima-inc.com/is-valid-glob/download/is-valid-glob-0.3.0.tgz#d4b55c69f51886f9b65c70d6c2622d37e29f48fe" 1604 | 1605 | is-wsl@^1.1.0: 1606 | version "1.1.0" 1607 | resolved "http://registry.npm.qima-inc.com/is-wsl/download/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" 1608 | 1609 | isarray@0.0.1: 1610 | version "0.0.1" 1611 | resolved "http://registry.npm.qima-inc.com/isarray/download/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1612 | 1613 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1614 | version "1.0.0" 1615 | resolved "http://registry.npm.qima-inc.com/isarray/download/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1616 | 1617 | isexe@^2.0.0: 1618 | version "2.0.0" 1619 | resolved "http://registry.npm.qima-inc.com/isexe/download/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1620 | 1621 | isobject@^2.0.0: 1622 | version "2.1.0" 1623 | resolved "http://registry.npm.qima-inc.com/isobject/download/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1624 | dependencies: 1625 | isarray "1.0.0" 1626 | 1627 | isstream@~0.1.2: 1628 | version "0.1.2" 1629 | resolved "http://registry.npm.qima-inc.com/isstream/download/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1630 | 1631 | isurl@^1.0.0-alpha5: 1632 | version "1.0.0" 1633 | resolved "http://registry.npm.qima-inc.com/isurl/download/isurl-1.0.0.tgz#b27f4f49f3cdaa3ea44a0a5b7f3462e6edc39d67" 1634 | dependencies: 1635 | has-to-string-tag-x "^1.2.0" 1636 | is-object "^1.0.1" 1637 | 1638 | js-tokens@^3.0.0: 1639 | version "3.0.2" 1640 | resolved "http://registry.npm.qima-inc.com/js-tokens/download/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1641 | 1642 | jsbn@~0.1.0: 1643 | version "0.1.1" 1644 | resolved "http://registry.npm.qima-inc.com/jsbn/download/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1645 | 1646 | jschardet@^1.4.2: 1647 | version "1.5.0" 1648 | resolved "http://registry.npm.qima-inc.com/jschardet/download/jschardet-1.5.0.tgz#a61f310306a5a71188e1b1acd08add3cfbb08b1e" 1649 | 1650 | jsesc@^1.3.0: 1651 | version "1.3.0" 1652 | resolved "http://registry.npm.qima-inc.com/jsesc/download/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1653 | 1654 | json-parse-better-errors@^1.0.0: 1655 | version "1.0.1" 1656 | resolved "http://registry.npm.qima-inc.com/json-parse-better-errors/download/json-parse-better-errors-1.0.1.tgz#50183cd1b2d25275de069e9e71b467ac9eab973a" 1657 | 1658 | json-schema@0.2.3: 1659 | version "0.2.3" 1660 | resolved "http://registry.npm.qima-inc.com/json-schema/download/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1661 | 1662 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 1663 | version "1.0.1" 1664 | resolved "http://registry.npm.qima-inc.com/json-stable-stringify/download/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1665 | dependencies: 1666 | jsonify "~0.0.0" 1667 | 1668 | json-stringify-safe@~5.0.1: 1669 | version "5.0.1" 1670 | resolved "http://registry.npm.qima-inc.com/json-stringify-safe/download/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1671 | 1672 | json5@^0.5.0: 1673 | version "0.5.1" 1674 | resolved "http://registry.npm.qima-inc.com/json5/download/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1675 | 1676 | jsonfile@^3.0.0: 1677 | version "3.0.1" 1678 | resolved "http://registry.npm.qima-inc.com/jsonfile/download/jsonfile-3.0.1.tgz#a5ecc6f65f53f662c4415c7675a0331d0992ec66" 1679 | optionalDependencies: 1680 | graceful-fs "^4.1.6" 1681 | 1682 | jsonify@~0.0.0: 1683 | version "0.0.0" 1684 | resolved "http://registry.npm.qima-inc.com/jsonify/download/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1685 | 1686 | jsonparse@^1.2.0: 1687 | version "1.3.1" 1688 | resolved "http://registry.npm.qima-inc.com/jsonparse/download/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 1689 | 1690 | jsprim@^1.2.2: 1691 | version "1.4.0" 1692 | resolved "http://registry.npm.qima-inc.com/jsprim/download/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1693 | dependencies: 1694 | assert-plus "1.0.0" 1695 | extsprintf "1.0.2" 1696 | json-schema "0.2.3" 1697 | verror "1.3.6" 1698 | 1699 | kind-of@^3.0.2: 1700 | version "3.2.2" 1701 | resolved "http://registry.npm.qima-inc.com/kind-of/download/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1702 | dependencies: 1703 | is-buffer "^1.1.5" 1704 | 1705 | kind-of@^4.0.0: 1706 | version "4.0.0" 1707 | resolved "http://registry.npm.qima-inc.com/kind-of/download/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1708 | dependencies: 1709 | is-buffer "^1.1.5" 1710 | 1711 | latest-version@^1.0.0: 1712 | version "1.0.1" 1713 | resolved "http://registry.npm.qima-inc.com/latest-version/download/latest-version-1.0.1.tgz#72cfc46e3e8d1be651e1ebb54ea9f6ea96f374bb" 1714 | dependencies: 1715 | package-json "^1.0.0" 1716 | 1717 | latest-version@^3.0.0: 1718 | version "3.1.0" 1719 | resolved "http://registry.npm.qima-inc.com/latest-version/download/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 1720 | dependencies: 1721 | package-json "^4.0.0" 1722 | 1723 | lazy-property@~1.0.0: 1724 | version "1.0.0" 1725 | resolved "http://registry.npm.qima-inc.com/lazy-property/download/lazy-property-1.0.0.tgz#84ddc4b370679ba8bd4cdcfa4c06b43d57111147" 1726 | 1727 | lazy-req@^2.0.0: 1728 | version "2.0.0" 1729 | resolved "http://registry.npm.qima-inc.com/lazy-req/download/lazy-req-2.0.0.tgz#c9450a363ecdda2e6f0c70132ad4f37f8f06f2b4" 1730 | 1731 | lazystream@^1.0.0: 1732 | version "1.0.0" 1733 | resolved "http://registry.npm.qima-inc.com/lazystream/download/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" 1734 | dependencies: 1735 | readable-stream "^2.0.5" 1736 | 1737 | locate-path@^2.0.0: 1738 | version "2.0.0" 1739 | resolved "http://registry.npm.qima-inc.com/locate-path/download/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1740 | dependencies: 1741 | p-locate "^2.0.0" 1742 | path-exists "^3.0.0" 1743 | 1744 | lockfile@~1.0.3: 1745 | version "1.0.3" 1746 | resolved "http://registry.npm.qima-inc.com/lockfile/download/lockfile-1.0.3.tgz#2638fc39a0331e9cac1a04b71799931c9c50df79" 1747 | 1748 | lodash._baseassign@^3.0.0: 1749 | version "3.2.0" 1750 | resolved "http://registry.npm.qima-inc.com/lodash._baseassign/download/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1751 | dependencies: 1752 | lodash._basecopy "^3.0.0" 1753 | lodash.keys "^3.0.0" 1754 | 1755 | lodash._basecopy@^3.0.0: 1756 | version "3.0.1" 1757 | resolved "http://registry.npm.qima-inc.com/lodash._basecopy/download/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1758 | 1759 | lodash._baseindexof@*: 1760 | version "3.1.0" 1761 | resolved "http://registry.npm.qima-inc.com/lodash._baseindexof/download/lodash._baseindexof-3.1.0.tgz#fe52b53a1c6761e42618d654e4a25789ed61822c" 1762 | 1763 | lodash._baseuniq@~4.6.0: 1764 | version "4.6.0" 1765 | resolved "http://registry.npm.qima-inc.com/lodash._baseuniq/download/lodash._baseuniq-4.6.0.tgz#0ebb44e456814af7905c6212fa2c9b2d51b841e8" 1766 | dependencies: 1767 | lodash._createset "~4.0.0" 1768 | lodash._root "~3.0.0" 1769 | 1770 | lodash._bindcallback@*, lodash._bindcallback@^3.0.0: 1771 | version "3.0.1" 1772 | resolved "http://registry.npm.qima-inc.com/lodash._bindcallback/download/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 1773 | 1774 | lodash._cacheindexof@*: 1775 | version "3.0.2" 1776 | resolved "http://registry.npm.qima-inc.com/lodash._cacheindexof/download/lodash._cacheindexof-3.0.2.tgz#3dc69ac82498d2ee5e3ce56091bafd2adc7bde92" 1777 | 1778 | lodash._createassigner@^3.0.0: 1779 | version "3.1.1" 1780 | resolved "http://registry.npm.qima-inc.com/lodash._createassigner/download/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 1781 | dependencies: 1782 | lodash._bindcallback "^3.0.0" 1783 | lodash._isiterateecall "^3.0.0" 1784 | lodash.restparam "^3.0.0" 1785 | 1786 | lodash._createcache@*: 1787 | version "3.1.2" 1788 | resolved "http://registry.npm.qima-inc.com/lodash._createcache/download/lodash._createcache-3.1.2.tgz#56d6a064017625e79ebca6b8018e17440bdcf093" 1789 | dependencies: 1790 | lodash._getnative "^3.0.0" 1791 | 1792 | lodash._createset@~4.0.0: 1793 | version "4.0.3" 1794 | resolved "http://registry.npm.qima-inc.com/lodash._createset/download/lodash._createset-4.0.3.tgz#0f4659fbb09d75194fa9e2b88a6644d363c9fe26" 1795 | 1796 | lodash._getnative@*, lodash._getnative@^3.0.0: 1797 | version "3.9.1" 1798 | resolved "http://registry.npm.qima-inc.com/lodash._getnative/download/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1799 | 1800 | lodash._isiterateecall@^3.0.0: 1801 | version "3.0.9" 1802 | resolved "http://registry.npm.qima-inc.com/lodash._isiterateecall/download/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1803 | 1804 | lodash._root@~3.0.0: 1805 | version "3.0.1" 1806 | resolved "http://registry.npm.qima-inc.com/lodash._root/download/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" 1807 | 1808 | lodash.assign@^3.0.0: 1809 | version "3.2.0" 1810 | resolved "http://registry.npm.qima-inc.com/lodash.assign/download/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" 1811 | dependencies: 1812 | lodash._baseassign "^3.0.0" 1813 | lodash._createassigner "^3.0.0" 1814 | lodash.keys "^3.0.0" 1815 | 1816 | lodash.clonedeep@~4.5.0: 1817 | version "4.5.0" 1818 | resolved "http://registry.npm.qima-inc.com/lodash.clonedeep/download/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 1819 | 1820 | lodash.defaults@^3.1.2: 1821 | version "3.1.2" 1822 | resolved "http://registry.npm.qima-inc.com/lodash.defaults/download/lodash.defaults-3.1.2.tgz#c7308b18dbf8bc9372d701a73493c61192bd2e2c" 1823 | dependencies: 1824 | lodash.assign "^3.0.0" 1825 | lodash.restparam "^3.0.0" 1826 | 1827 | lodash.isarguments@^3.0.0: 1828 | version "3.1.0" 1829 | resolved "http://registry.npm.qima-inc.com/lodash.isarguments/download/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1830 | 1831 | lodash.isarray@^3.0.0: 1832 | version "3.0.4" 1833 | resolved "http://registry.npm.qima-inc.com/lodash.isarray/download/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1834 | 1835 | lodash.isequal@^4.0.0: 1836 | version "4.5.0" 1837 | resolved "http://registry.npm.qima-inc.com/lodash.isequal/download/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 1838 | 1839 | lodash.keys@^3.0.0: 1840 | version "3.1.2" 1841 | resolved "http://registry.npm.qima-inc.com/lodash.keys/download/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1842 | dependencies: 1843 | lodash._getnative "^3.0.0" 1844 | lodash.isarguments "^3.0.0" 1845 | lodash.isarray "^3.0.0" 1846 | 1847 | lodash.restparam@*, lodash.restparam@^3.0.0: 1848 | version "3.6.1" 1849 | resolved "http://registry.npm.qima-inc.com/lodash.restparam/download/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 1850 | 1851 | lodash.union@~4.6.0: 1852 | version "4.6.0" 1853 | resolved "http://registry.npm.qima-inc.com/lodash.union/download/lodash.union-4.6.0.tgz#48bb5088409f16f1821666641c44dd1aaae3cd88" 1854 | 1855 | lodash.uniq@~4.5.0: 1856 | version "4.5.0" 1857 | resolved "http://registry.npm.qima-inc.com/lodash.uniq/download/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 1858 | 1859 | lodash.without@~4.4.0: 1860 | version "4.4.0" 1861 | resolved "http://registry.npm.qima-inc.com/lodash.without/download/lodash.without-4.4.0.tgz#3cd4574a00b67bae373a94b748772640507b7aac" 1862 | 1863 | lodash@^4.14.0, lodash@^4.2.0, lodash@^4.3.0: 1864 | version "4.17.4" 1865 | resolved "http://registry.npm.qima-inc.com/lodash/download/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1866 | 1867 | log-symbols@^1.0.2: 1868 | version "1.0.2" 1869 | resolved "http://registry.npm.qima-inc.com/log-symbols/download/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 1870 | dependencies: 1871 | chalk "^1.0.0" 1872 | 1873 | loose-envify@^1.0.0: 1874 | version "1.3.1" 1875 | resolved "http://registry.npm.qima-inc.com/loose-envify/download/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1876 | dependencies: 1877 | js-tokens "^3.0.0" 1878 | 1879 | lower-case@^1.1.1: 1880 | version "1.1.4" 1881 | resolved "http://registry.npm.qima-inc.com/lower-case/download/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" 1882 | 1883 | lowercase-keys@^1.0.0: 1884 | version "1.0.0" 1885 | resolved "http://registry.npm.qima-inc.com/lowercase-keys/download/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 1886 | 1887 | lru-cache@^4.0.1: 1888 | version "4.1.1" 1889 | resolved "http://registry.npm.qima-inc.com/lru-cache/download/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1890 | dependencies: 1891 | pseudomap "^1.0.2" 1892 | yallist "^2.1.2" 1893 | 1894 | lru-queue@0.1: 1895 | version "0.1.0" 1896 | resolved "http://registry.npm.qima-inc.com/lru-queue/download/lru-queue-0.1.0.tgz#2738bd9f0d3cf4f84490c5736c48699ac632cda3" 1897 | dependencies: 1898 | es5-ext "~0.10.2" 1899 | 1900 | make-dir@^1.0.0: 1901 | version "1.0.0" 1902 | resolved "http://registry.npm.qima-inc.com/make-dir/download/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978" 1903 | dependencies: 1904 | pify "^2.3.0" 1905 | 1906 | map-stream@0.0.7: 1907 | version "0.0.7" 1908 | resolved "http://registry.npm.qima-inc.com/map-stream/download/map-stream-0.0.7.tgz#8a1f07896d82b10926bd3744a2420009f88974a8" 1909 | 1910 | map-stream@~0.1.0: 1911 | version "0.1.0" 1912 | resolved "http://registry.npm.qima-inc.com/map-stream/download/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 1913 | 1914 | memoizee@^0.4.3: 1915 | version "0.4.9" 1916 | resolved "http://registry.npm.qima-inc.com/memoizee/download/memoizee-0.4.9.tgz#ea1c005f5c4c31d89a4a10e24db83fbf61cdd4f3" 1917 | dependencies: 1918 | d "1" 1919 | es5-ext "^0.10.30" 1920 | es6-weak-map "^2.0.2" 1921 | event-emitter "^0.3.5" 1922 | is-promise "^2.1" 1923 | lru-queue "0.1" 1924 | next-tick "1" 1925 | timers-ext "^0.1.2" 1926 | 1927 | merge-stream@^1.0.0: 1928 | version "1.0.1" 1929 | resolved "http://registry.npm.qima-inc.com/merge-stream/download/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 1930 | dependencies: 1931 | readable-stream "^2.0.1" 1932 | 1933 | micromatch@^2.1.5, micromatch@^2.3.7: 1934 | version "2.3.11" 1935 | resolved "http://registry.npm.qima-inc.com/micromatch/download/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1936 | dependencies: 1937 | arr-diff "^2.0.0" 1938 | array-unique "^0.2.1" 1939 | braces "^1.8.2" 1940 | expand-brackets "^0.1.4" 1941 | extglob "^0.3.1" 1942 | filename-regex "^2.0.0" 1943 | is-extglob "^1.0.0" 1944 | is-glob "^2.0.1" 1945 | kind-of "^3.0.2" 1946 | normalize-path "^2.0.1" 1947 | object.omit "^2.0.0" 1948 | parse-glob "^3.0.4" 1949 | regex-cache "^0.4.2" 1950 | 1951 | mime-db@^1.28.0, mime-db@~1.29.0: 1952 | version "1.29.0" 1953 | resolved "http://registry.npm.qima-inc.com/mime-db/download/mime-db-1.29.0.tgz#48d26d235589651704ac5916ca06001914266878" 1954 | 1955 | mime-types@^2.1.12, mime-types@~2.1.7: 1956 | version "2.1.16" 1957 | resolved "http://registry.npm.qima-inc.com/mime-types/download/mime-types-2.1.16.tgz#2b858a52e5ecd516db897ac2be87487830698e23" 1958 | dependencies: 1959 | mime-db "~1.29.0" 1960 | 1961 | mimic-fn@^1.0.0: 1962 | version "1.1.0" 1963 | resolved "http://registry.npm.qima-inc.com/mimic-fn/download/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1964 | 1965 | mimic-response@^1.0.0: 1966 | version "1.0.0" 1967 | resolved "http://registry.npm.qima-inc.com/mimic-response/download/mimic-response-1.0.0.tgz#df3d3652a73fded6b9b0b24146e6fd052353458e" 1968 | 1969 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1970 | version "3.0.4" 1971 | resolved "http://registry.npm.qima-inc.com/minimatch/download/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1972 | dependencies: 1973 | brace-expansion "^1.1.7" 1974 | 1975 | minimist@0.0.8: 1976 | version "0.0.8" 1977 | resolved "http://registry.npm.qima-inc.com/minimist/download/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1978 | 1979 | minimist@^1.1.0, minimist@^1.2.0: 1980 | version "1.2.0" 1981 | resolved "http://registry.npm.qima-inc.com/minimist/download/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1982 | 1983 | mississippi@~1.3.0: 1984 | version "1.3.0" 1985 | resolved "http://registry.npm.qima-inc.com/mississippi/download/mississippi-1.3.0.tgz#d201583eb12327e3c5c1642a404a9cacf94e34f5" 1986 | dependencies: 1987 | concat-stream "^1.5.0" 1988 | duplexify "^3.4.2" 1989 | end-of-stream "^1.1.0" 1990 | flush-write-stream "^1.0.0" 1991 | from2 "^2.1.0" 1992 | parallel-transform "^1.1.0" 1993 | pump "^1.0.0" 1994 | pumpify "^1.3.3" 1995 | stream-each "^1.1.0" 1996 | through2 "^2.0.0" 1997 | 1998 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: 1999 | version "0.5.1" 2000 | resolved "http://registry.npm.qima-inc.com/mkdirp/download/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2001 | dependencies: 2002 | minimist "0.0.8" 2003 | 2004 | move-concurrently@~1.0.1: 2005 | version "1.0.1" 2006 | resolved "http://registry.npm.qima-inc.com/move-concurrently/download/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" 2007 | dependencies: 2008 | aproba "^1.1.1" 2009 | copy-concurrently "^1.0.0" 2010 | fs-write-stream-atomic "^1.0.8" 2011 | mkdirp "^0.5.1" 2012 | rimraf "^2.5.4" 2013 | run-queue "^1.0.3" 2014 | 2015 | ms@2.0.0: 2016 | version "2.0.0" 2017 | resolved "http://registry.npm.qima-inc.com/ms/download/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2018 | 2019 | mute-stream@0.0.7, mute-stream@~0.0.4: 2020 | version "0.0.7" 2021 | resolved "http://registry.npm.qima-inc.com/mute-stream/download/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2022 | 2023 | nan@^2.3.0: 2024 | version "2.6.2" 2025 | resolved "http://registry.npm.qima-inc.com/nan/download/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2026 | 2027 | ncname@1.0.x: 2028 | version "1.0.0" 2029 | resolved "http://registry.npm.qima-inc.com/ncname/download/ncname-1.0.0.tgz#5b57ad18b1ca092864ef62b0b1ed8194f383b71c" 2030 | dependencies: 2031 | xml-char-classes "^1.0.0" 2032 | 2033 | nested-error-stacks@^1.0.0: 2034 | version "1.0.2" 2035 | resolved "http://registry.npm.qima-inc.com/nested-error-stacks/download/nested-error-stacks-1.0.2.tgz#19f619591519f096769a5ba9a86e6eeec823c3cf" 2036 | dependencies: 2037 | inherits "~2.0.1" 2038 | 2039 | next-tick@1: 2040 | version "1.0.0" 2041 | resolved "http://registry.npm.qima-inc.com/next-tick/download/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" 2042 | 2043 | no-case@^2.2.0: 2044 | version "2.3.1" 2045 | resolved "http://registry.npm.qima-inc.com/no-case/download/no-case-2.3.1.tgz#7aeba1c73a52184265554b7dc03baf720df80081" 2046 | dependencies: 2047 | lower-case "^1.1.1" 2048 | 2049 | node-gyp@~3.6.0: 2050 | version "3.6.2" 2051 | resolved "http://registry.npm.qima-inc.com/node-gyp/download/node-gyp-3.6.2.tgz#9bfbe54562286284838e750eac05295853fa1c60" 2052 | dependencies: 2053 | fstream "^1.0.0" 2054 | glob "^7.0.3" 2055 | graceful-fs "^4.1.2" 2056 | minimatch "^3.0.2" 2057 | mkdirp "^0.5.0" 2058 | nopt "2 || 3" 2059 | npmlog "0 || 1 || 2 || 3 || 4" 2060 | osenv "0" 2061 | request "2" 2062 | rimraf "2" 2063 | semver "~5.3.0" 2064 | tar "^2.0.0" 2065 | which "1" 2066 | 2067 | node-pre-gyp@^0.6.36: 2068 | version "0.6.36" 2069 | resolved "http://registry.npm.qima-inc.com/node-pre-gyp/download/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 2070 | dependencies: 2071 | mkdirp "^0.5.1" 2072 | nopt "^4.0.1" 2073 | npmlog "^4.0.2" 2074 | rc "^1.1.7" 2075 | request "^2.81.0" 2076 | rimraf "^2.6.1" 2077 | semver "^5.3.0" 2078 | tar "^2.2.1" 2079 | tar-pack "^3.4.0" 2080 | 2081 | nodemon@1.11.0: 2082 | version "1.11.0" 2083 | resolved "http://registry.npm.qima-inc.com/nodemon/download/nodemon-1.11.0.tgz#226c562bd2a7b13d3d7518b49ad4828a3623d06c" 2084 | dependencies: 2085 | chokidar "^1.4.3" 2086 | debug "^2.2.0" 2087 | es6-promise "^3.0.2" 2088 | ignore-by-default "^1.0.0" 2089 | lodash.defaults "^3.1.2" 2090 | minimatch "^3.0.0" 2091 | ps-tree "^1.0.1" 2092 | touch "1.0.0" 2093 | undefsafe "0.0.3" 2094 | update-notifier "0.5.0" 2095 | 2096 | "nopt@2 || 3": 2097 | version "3.0.6" 2098 | resolved "http://registry.npm.qima-inc.com/nopt/download/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2099 | dependencies: 2100 | abbrev "1" 2101 | 2102 | nopt@^4.0.1, nopt@~4.0.1: 2103 | version "4.0.1" 2104 | resolved "http://registry.npm.qima-inc.com/nopt/download/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2105 | dependencies: 2106 | abbrev "1" 2107 | osenv "^0.1.4" 2108 | 2109 | nopt@~1.0.10: 2110 | version "1.0.10" 2111 | resolved "http://registry.npm.qima-inc.com/nopt/download/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 2112 | dependencies: 2113 | abbrev "1" 2114 | 2115 | normalize-git-url@~3.0.2: 2116 | version "3.0.2" 2117 | resolved "http://registry.npm.qima-inc.com/normalize-git-url/download/normalize-git-url-3.0.2.tgz#8e5f14be0bdaedb73e07200310aa416c27350fc4" 2118 | 2119 | normalize-package-data@^2.0.0, "normalize-package-data@~1.0.1 || ^2.0.0", normalize-package-data@~2.3.8: 2120 | version "2.3.8" 2121 | resolved "http://registry.npm.qima-inc.com/normalize-package-data/download/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2122 | dependencies: 2123 | hosted-git-info "^2.1.4" 2124 | is-builtin-module "^1.0.0" 2125 | semver "2 || 3 || 4 || 5" 2126 | validate-npm-package-license "^3.0.1" 2127 | 2128 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2129 | version "2.1.1" 2130 | resolved "http://registry.npm.qima-inc.com/normalize-path/download/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2131 | dependencies: 2132 | remove-trailing-separator "^1.0.1" 2133 | 2134 | npm-cache-filename@~1.0.2: 2135 | version "1.0.2" 2136 | resolved "http://registry.npm.qima-inc.com/npm-cache-filename/download/npm-cache-filename-1.0.2.tgz#ded306c5b0bfc870a9e9faf823bc5f283e05ae11" 2137 | 2138 | npm-conf@^1.1.0: 2139 | version "1.1.2" 2140 | resolved "http://registry.npm.qima-inc.com/npm-conf/download/npm-conf-1.1.2.tgz#170a2c48a0c6ad0495f03f87aec2da11ef47a525" 2141 | dependencies: 2142 | config-chain "^1.1.11" 2143 | pify "^3.0.0" 2144 | 2145 | npm-install-checks@~3.0.0: 2146 | version "3.0.0" 2147 | resolved "http://registry.npm.qima-inc.com/npm-install-checks/download/npm-install-checks-3.0.0.tgz#d4aecdfd51a53e3723b7b2f93b2ee28e307bc0d7" 2148 | dependencies: 2149 | semver "^2.3.0 || 3.x || 4 || 5" 2150 | 2151 | "npm-package-arg@^3.0.0 || ^4.0.0 || ^5.0.0", "npm-package-arg@^4.0.0 || ^5.0.0", npm-package-arg@^4.1.1, npm-package-arg@~4.2.1: 2152 | version "4.2.1" 2153 | resolved "http://registry.npm.qima-inc.com/npm-package-arg/download/npm-package-arg-4.2.1.tgz#593303fdea85f7c422775f17f9eb7670f680e3ec" 2154 | dependencies: 2155 | hosted-git-info "^2.1.5" 2156 | semver "^5.1.0" 2157 | 2158 | npm-registry-client@~8.1.1: 2159 | version "8.1.1" 2160 | resolved "http://registry.npm.qima-inc.com/npm-registry-client/download/npm-registry-client-8.1.1.tgz#831476455423ca0a265c6ffdb6100fcc042b36cf" 2161 | dependencies: 2162 | concat-stream "^1.5.2" 2163 | graceful-fs "^4.1.6" 2164 | normalize-package-data "~1.0.1 || ^2.0.0" 2165 | npm-package-arg "^3.0.0 || ^4.0.0 || ^5.0.0" 2166 | once "^1.3.3" 2167 | request "^2.74.0" 2168 | retry "^0.10.0" 2169 | semver "2 >=2.2.1 || 3.x || 4 || 5" 2170 | slide "^1.1.3" 2171 | optionalDependencies: 2172 | npmlog "2 || ^3.1.0 || ^4.0.0" 2173 | 2174 | npm-run-path@^2.0.0: 2175 | version "2.0.2" 2176 | resolved "http://registry.npm.qima-inc.com/npm-run-path/download/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2177 | dependencies: 2178 | path-key "^2.0.0" 2179 | 2180 | npm-user-validate@~0.1.5: 2181 | version "0.1.5" 2182 | resolved "http://registry.npm.qima-inc.com/npm-user-validate/download/npm-user-validate-0.1.5.tgz#52465d50c2d20294a57125b996baedbf56c5004b" 2183 | 2184 | npm@^4.0.3: 2185 | version "4.6.1" 2186 | resolved "http://registry.npm.qima-inc.com/npm/download/npm-4.6.1.tgz#f8eb1ad00dc58a5514363b41ca5342817f0bd646" 2187 | dependencies: 2188 | JSONStream "~1.3.1" 2189 | abbrev "~1.1.0" 2190 | ansi-regex "~2.1.1" 2191 | ansicolors "~0.3.2" 2192 | ansistyles "~0.1.3" 2193 | aproba "~1.1.1" 2194 | archy "~1.0.0" 2195 | asap "~2.0.5" 2196 | bluebird "~3.5.0" 2197 | call-limit "~1.1.0" 2198 | chownr "~1.0.1" 2199 | cmd-shim "~2.0.2" 2200 | columnify "~1.5.4" 2201 | config-chain "~1.1.11" 2202 | dezalgo "~1.0.3" 2203 | editor "~1.0.0" 2204 | fs-vacuum "~1.2.10" 2205 | fs-write-stream-atomic "~1.0.10" 2206 | fstream "~1.0.11" 2207 | fstream-npm "~1.2.0" 2208 | glob "~7.1.1" 2209 | graceful-fs "~4.1.11" 2210 | has-unicode "~2.0.1" 2211 | hosted-git-info "~2.4.2" 2212 | iferr "~0.1.5" 2213 | inflight "~1.0.6" 2214 | inherits "~2.0.3" 2215 | ini "~1.3.4" 2216 | init-package-json "~1.10.1" 2217 | lazy-property "~1.0.0" 2218 | lockfile "~1.0.3" 2219 | lodash._baseuniq "~4.6.0" 2220 | lodash.clonedeep "~4.5.0" 2221 | lodash.union "~4.6.0" 2222 | lodash.uniq "~4.5.0" 2223 | lodash.without "~4.4.0" 2224 | mississippi "~1.3.0" 2225 | mkdirp "~0.5.1" 2226 | move-concurrently "~1.0.1" 2227 | node-gyp "~3.6.0" 2228 | nopt "~4.0.1" 2229 | normalize-git-url "~3.0.2" 2230 | normalize-package-data "~2.3.8" 2231 | npm-cache-filename "~1.0.2" 2232 | npm-install-checks "~3.0.0" 2233 | npm-package-arg "~4.2.1" 2234 | npm-registry-client "~8.1.1" 2235 | npm-user-validate "~0.1.5" 2236 | npmlog "~4.0.2" 2237 | once "~1.4.0" 2238 | opener "~1.4.3" 2239 | osenv "~0.1.4" 2240 | path-is-inside "~1.0.2" 2241 | read "~1.0.7" 2242 | read-cmd-shim "~1.0.1" 2243 | read-installed "~4.0.3" 2244 | read-package-json "~2.0.5" 2245 | read-package-tree "~5.1.5" 2246 | readable-stream "~2.2.9" 2247 | realize-package-specifier "~3.0.3" 2248 | request "~2.81.0" 2249 | retry "~0.10.1" 2250 | rimraf "~2.6.1" 2251 | semver "~5.3.0" 2252 | sha "~2.0.1" 2253 | slide "~1.1.6" 2254 | sorted-object "~2.0.1" 2255 | sorted-union-stream "~2.1.3" 2256 | strip-ansi "~3.0.1" 2257 | tar "~2.2.1" 2258 | text-table "~0.2.0" 2259 | uid-number "0.0.6" 2260 | umask "~1.1.0" 2261 | unique-filename "~1.1.0" 2262 | unpipe "~1.0.0" 2263 | update-notifier "~2.1.0" 2264 | uuid "~3.0.1" 2265 | validate-npm-package-name "~3.0.0" 2266 | which "~1.2.14" 2267 | wrappy "~1.0.2" 2268 | write-file-atomic "~1.3.3" 2269 | 2270 | "npmlog@0 || 1 || 2 || 3 || 4", "npmlog@2 || ^3.1.0 || ^4.0.0", npmlog@^4.0.2: 2271 | version "4.1.2" 2272 | resolved "http://registry.npm.qima-inc.com/npmlog/download/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2273 | dependencies: 2274 | are-we-there-yet "~1.1.2" 2275 | console-control-strings "~1.1.0" 2276 | gauge "~2.7.3" 2277 | set-blocking "~2.0.0" 2278 | 2279 | npmlog@~4.0.2: 2280 | version "4.0.2" 2281 | resolved "http://registry.npm.qima-inc.com/npmlog/download/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 2282 | dependencies: 2283 | are-we-there-yet "~1.1.2" 2284 | console-control-strings "~1.1.0" 2285 | gauge "~2.7.1" 2286 | set-blocking "~2.0.0" 2287 | 2288 | number-is-nan@^1.0.0: 2289 | version "1.0.1" 2290 | resolved "http://registry.npm.qima-inc.com/number-is-nan/download/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2291 | 2292 | oauth-sign@~0.8.1: 2293 | version "0.8.2" 2294 | resolved "http://registry.npm.qima-inc.com/oauth-sign/download/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2295 | 2296 | object-assign@^3.0.0: 2297 | version "3.0.0" 2298 | resolved "http://registry.npm.qima-inc.com/object-assign/download/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 2299 | 2300 | object-assign@^4.0.0, object-assign@^4.0.1, object-assign@^4.1.0: 2301 | version "4.1.1" 2302 | resolved "http://registry.npm.qima-inc.com/object-assign/download/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2303 | 2304 | object.omit@^2.0.0: 2305 | version "2.0.1" 2306 | resolved "http://registry.npm.qima-inc.com/object.omit/download/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2307 | dependencies: 2308 | for-own "^0.1.4" 2309 | is-extendable "^0.1.1" 2310 | 2311 | once@^1.3.0, once@^1.3.1, once@^1.3.3, once@^1.4.0, once@~1.4.0: 2312 | version "1.4.0" 2313 | resolved "http://registry.npm.qima-inc.com/once/download/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2314 | dependencies: 2315 | wrappy "1" 2316 | 2317 | once@~1.3.0: 2318 | version "1.3.3" 2319 | resolved "http://registry.npm.qima-inc.com/once/download/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2320 | dependencies: 2321 | wrappy "1" 2322 | 2323 | onetime@^2.0.0: 2324 | version "2.0.1" 2325 | resolved "http://registry.npm.qima-inc.com/onetime/download/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2326 | dependencies: 2327 | mimic-fn "^1.0.0" 2328 | 2329 | opener@~1.4.3: 2330 | version "1.4.3" 2331 | resolved "http://registry.npm.qima-inc.com/opener/download/opener-1.4.3.tgz#5c6da2c5d7e5831e8ffa3964950f8d6674ac90b8" 2332 | 2333 | opn@5.1.0: 2334 | version "5.1.0" 2335 | resolved "http://registry.npm.qima-inc.com/opn/download/opn-5.1.0.tgz#72ce2306a17dbea58ff1041853352b4a8fc77519" 2336 | dependencies: 2337 | is-wsl "^1.1.0" 2338 | 2339 | ora@1.3.0: 2340 | version "1.3.0" 2341 | resolved "http://registry.npm.qima-inc.com/ora/download/ora-1.3.0.tgz#80078dd2b92a934af66a3ad72a5b910694ede51a" 2342 | dependencies: 2343 | chalk "^1.1.1" 2344 | cli-cursor "^2.1.0" 2345 | cli-spinners "^1.0.0" 2346 | log-symbols "^1.0.2" 2347 | 2348 | ordered-read-streams@^0.3.0: 2349 | version "0.3.0" 2350 | resolved "http://registry.npm.qima-inc.com/ordered-read-streams/download/ordered-read-streams-0.3.0.tgz#7137e69b3298bb342247a1bbee3881c80e2fd78b" 2351 | dependencies: 2352 | is-stream "^1.0.1" 2353 | readable-stream "^2.0.1" 2354 | 2355 | os-homedir@^1.0.0: 2356 | version "1.0.2" 2357 | resolved "http://registry.npm.qima-inc.com/os-homedir/download/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2358 | 2359 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 2360 | version "1.0.2" 2361 | resolved "http://registry.npm.qima-inc.com/os-tmpdir/download/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2362 | 2363 | osenv@0, osenv@^0.1.0, osenv@^0.1.4, osenv@~0.1.4: 2364 | version "0.1.4" 2365 | resolved "http://registry.npm.qima-inc.com/osenv/download/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2366 | dependencies: 2367 | os-homedir "^1.0.0" 2368 | os-tmpdir "^1.0.0" 2369 | 2370 | output-file-sync@^1.1.0: 2371 | version "1.1.2" 2372 | resolved "http://registry.npm.qima-inc.com/output-file-sync/download/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2373 | dependencies: 2374 | graceful-fs "^4.1.4" 2375 | mkdirp "^0.5.1" 2376 | object-assign "^4.1.0" 2377 | 2378 | p-cancelable@^0.3.0: 2379 | version "0.3.0" 2380 | resolved "http://registry.npm.qima-inc.com/p-cancelable/download/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" 2381 | 2382 | p-event@^1.0.0: 2383 | version "1.3.0" 2384 | resolved "http://registry.npm.qima-inc.com/p-event/download/p-event-1.3.0.tgz#8e6b4f4f65c72bc5b6fe28b75eda874f96a4a085" 2385 | dependencies: 2386 | p-timeout "^1.1.1" 2387 | 2388 | p-finally@^1.0.0: 2389 | version "1.0.0" 2390 | resolved "http://registry.npm.qima-inc.com/p-finally/download/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2391 | 2392 | p-limit@^1.1.0: 2393 | version "1.1.0" 2394 | resolved "http://registry.npm.qima-inc.com/p-limit/download/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2395 | 2396 | p-locate@^2.0.0: 2397 | version "2.0.0" 2398 | resolved "http://registry.npm.qima-inc.com/p-locate/download/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2399 | dependencies: 2400 | p-limit "^1.1.0" 2401 | 2402 | p-timeout@^1.1.1: 2403 | version "1.2.0" 2404 | resolved "http://registry.npm.qima-inc.com/p-timeout/download/p-timeout-1.2.0.tgz#9820f99434c5817868b4f34809ee5291660d5b6c" 2405 | dependencies: 2406 | p-finally "^1.0.0" 2407 | 2408 | package-json@^1.0.0: 2409 | version "1.2.0" 2410 | resolved "http://registry.npm.qima-inc.com/package-json/download/package-json-1.2.0.tgz#c8ecac094227cdf76a316874ed05e27cc939a0e0" 2411 | dependencies: 2412 | got "^3.2.0" 2413 | registry-url "^3.0.0" 2414 | 2415 | package-json@^4.0.0: 2416 | version "4.0.1" 2417 | resolved "http://registry.npm.qima-inc.com/package-json/download/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 2418 | dependencies: 2419 | got "^6.7.1" 2420 | registry-auth-token "^3.0.1" 2421 | registry-url "^3.0.3" 2422 | semver "^5.1.0" 2423 | 2424 | parallel-transform@^1.1.0: 2425 | version "1.1.0" 2426 | resolved "http://registry.npm.qima-inc.com/parallel-transform/download/parallel-transform-1.1.0.tgz#d410f065b05da23081fcd10f28854c29bda33b06" 2427 | dependencies: 2428 | cyclist "~0.2.2" 2429 | inherits "^2.0.3" 2430 | readable-stream "^2.1.5" 2431 | 2432 | param-case@2.1.x: 2433 | version "2.1.1" 2434 | resolved "http://registry.npm.qima-inc.com/param-case/download/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" 2435 | dependencies: 2436 | no-case "^2.2.0" 2437 | 2438 | parse-glob@^3.0.4: 2439 | version "3.0.4" 2440 | resolved "http://registry.npm.qima-inc.com/parse-glob/download/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2441 | dependencies: 2442 | glob-base "^0.3.0" 2443 | is-dotfile "^1.0.0" 2444 | is-extglob "^1.0.0" 2445 | is-glob "^2.0.0" 2446 | 2447 | path-dirname@^1.0.0: 2448 | version "1.0.2" 2449 | resolved "http://registry.npm.qima-inc.com/path-dirname/download/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2450 | 2451 | path-exists@^3.0.0: 2452 | version "3.0.0" 2453 | resolved "http://registry.npm.qima-inc.com/path-exists/download/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2454 | 2455 | path-is-absolute@^1.0.0: 2456 | version "1.0.1" 2457 | resolved "http://registry.npm.qima-inc.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2458 | 2459 | path-is-inside@^1.0.1, path-is-inside@~1.0.2: 2460 | version "1.0.2" 2461 | resolved "http://registry.npm.qima-inc.com/path-is-inside/download/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2462 | 2463 | path-key@^2.0.0: 2464 | version "2.0.1" 2465 | resolved "http://registry.npm.qima-inc.com/path-key/download/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2466 | 2467 | path-parse@^1.0.5: 2468 | version "1.0.5" 2469 | resolved "http://registry.npm.qima-inc.com/path-parse/download/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2470 | 2471 | pause-stream@0.0.11: 2472 | version "0.0.11" 2473 | resolved "http://registry.npm.qima-inc.com/pause-stream/download/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 2474 | dependencies: 2475 | through "~2.3" 2476 | 2477 | pend@~1.2.0: 2478 | version "1.2.0" 2479 | resolved "http://registry.npm.qima-inc.com/pend/download/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 2480 | 2481 | performance-now@^0.2.0: 2482 | version "0.2.0" 2483 | resolved "http://registry.npm.qima-inc.com/performance-now/download/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2484 | 2485 | pify@^2.3.0: 2486 | version "2.3.0" 2487 | resolved "http://registry.npm.qima-inc.com/pify/download/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2488 | 2489 | pify@^3.0.0: 2490 | version "3.0.0" 2491 | resolved "http://registry.npm.qima-inc.com/pify/download/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2492 | 2493 | pinkie-promise@^2.0.0: 2494 | version "2.0.1" 2495 | resolved "http://registry.npm.qima-inc.com/pinkie-promise/download/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2496 | dependencies: 2497 | pinkie "^2.0.0" 2498 | 2499 | pinkie@^2.0.0: 2500 | version "2.0.4" 2501 | resolved "http://registry.npm.qima-inc.com/pinkie/download/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2502 | 2503 | pkg-up@^2.0.0: 2504 | version "2.0.0" 2505 | resolved "http://registry.npm.qima-inc.com/pkg-up/download/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f" 2506 | dependencies: 2507 | find-up "^2.1.0" 2508 | 2509 | prepend-http@^1.0.0, prepend-http@^1.0.1: 2510 | version "1.0.4" 2511 | resolved "http://registry.npm.qima-inc.com/prepend-http/download/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2512 | 2513 | preserve@^0.2.0: 2514 | version "0.2.0" 2515 | resolved "http://registry.npm.qima-inc.com/preserve/download/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2516 | 2517 | private@^0.1.6: 2518 | version "0.1.7" 2519 | resolved "http://registry.npm.qima-inc.com/private/download/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2520 | 2521 | process-nextick-args@~1.0.6: 2522 | version "1.0.7" 2523 | resolved "http://registry.npm.qima-inc.com/process-nextick-args/download/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2524 | 2525 | promzard@^0.3.0: 2526 | version "0.3.0" 2527 | resolved "http://registry.npm.qima-inc.com/promzard/download/promzard-0.3.0.tgz#26a5d6ee8c7dee4cb12208305acfb93ba382a9ee" 2528 | dependencies: 2529 | read "1" 2530 | 2531 | proto-list@~1.2.1: 2532 | version "1.2.4" 2533 | resolved "http://registry.npm.qima-inc.com/proto-list/download/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 2534 | 2535 | ps-tree@^1.0.1: 2536 | version "1.1.0" 2537 | resolved "http://registry.npm.qima-inc.com/ps-tree/download/ps-tree-1.1.0.tgz#b421b24140d6203f1ed3c76996b4427b08e8c014" 2538 | dependencies: 2539 | event-stream "~3.3.0" 2540 | 2541 | pseudomap@^1.0.2: 2542 | version "1.0.2" 2543 | resolved "http://registry.npm.qima-inc.com/pseudomap/download/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2544 | 2545 | pump@^1.0.0: 2546 | version "1.0.2" 2547 | resolved "http://registry.npm.qima-inc.com/pump/download/pump-1.0.2.tgz#3b3ee6512f94f0e575538c17995f9f16990a5d51" 2548 | dependencies: 2549 | end-of-stream "^1.1.0" 2550 | once "^1.3.1" 2551 | 2552 | pumpify@^1.3.3: 2553 | version "1.3.5" 2554 | resolved "http://registry.npm.qima-inc.com/pumpify/download/pumpify-1.3.5.tgz#1b671c619940abcaeac0ad0e3a3c164be760993b" 2555 | dependencies: 2556 | duplexify "^3.1.2" 2557 | inherits "^2.0.1" 2558 | pump "^1.0.0" 2559 | 2560 | punycode@^1.4.1: 2561 | version "1.4.1" 2562 | resolved "http://registry.npm.qima-inc.com/punycode/download/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2563 | 2564 | qs@~6.4.0: 2565 | version "6.4.0" 2566 | resolved "http://registry.npm.qima-inc.com/qs/download/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2567 | 2568 | randomatic@^1.1.3: 2569 | version "1.1.7" 2570 | resolved "http://registry.npm.qima-inc.com/randomatic/download/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2571 | dependencies: 2572 | is-number "^3.0.0" 2573 | kind-of "^4.0.0" 2574 | 2575 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: 2576 | version "1.2.1" 2577 | resolved "http://registry.npm.qima-inc.com/rc/download/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2578 | dependencies: 2579 | deep-extend "~0.4.0" 2580 | ini "~1.3.0" 2581 | minimist "^1.2.0" 2582 | strip-json-comments "~2.0.1" 2583 | 2584 | read-all-stream@^3.0.0: 2585 | version "3.1.0" 2586 | resolved "http://registry.npm.qima-inc.com/read-all-stream/download/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" 2587 | dependencies: 2588 | pinkie-promise "^2.0.0" 2589 | readable-stream "^2.0.0" 2590 | 2591 | read-cmd-shim@~1.0.1: 2592 | version "1.0.1" 2593 | resolved "http://registry.npm.qima-inc.com/read-cmd-shim/download/read-cmd-shim-1.0.1.tgz#2d5d157786a37c055d22077c32c53f8329e91c7b" 2594 | dependencies: 2595 | graceful-fs "^4.1.2" 2596 | 2597 | read-installed@~4.0.3: 2598 | version "4.0.3" 2599 | resolved "http://registry.npm.qima-inc.com/read-installed/download/read-installed-4.0.3.tgz#ff9b8b67f187d1e4c29b9feb31f6b223acd19067" 2600 | dependencies: 2601 | debuglog "^1.0.1" 2602 | read-package-json "^2.0.0" 2603 | readdir-scoped-modules "^1.0.0" 2604 | semver "2 || 3 || 4 || 5" 2605 | slide "~1.1.3" 2606 | util-extend "^1.0.1" 2607 | optionalDependencies: 2608 | graceful-fs "^4.1.2" 2609 | 2610 | "read-package-json@1 || 2", read-package-json@^2.0.0, read-package-json@~2.0.5: 2611 | version "2.0.12" 2612 | resolved "http://registry.npm.qima-inc.com/read-package-json/download/read-package-json-2.0.12.tgz#68ea45f98b3741cb6e10ae3bbd42a605026a6951" 2613 | dependencies: 2614 | glob "^7.1.1" 2615 | json-parse-better-errors "^1.0.0" 2616 | normalize-package-data "^2.0.0" 2617 | slash "^1.0.0" 2618 | optionalDependencies: 2619 | graceful-fs "^4.1.2" 2620 | 2621 | read-package-tree@~5.1.5: 2622 | version "5.1.6" 2623 | resolved "http://registry.npm.qima-inc.com/read-package-tree/download/read-package-tree-5.1.6.tgz#4f03e83d0486856fb60d97c94882841c2a7b1b7a" 2624 | dependencies: 2625 | debuglog "^1.0.1" 2626 | dezalgo "^1.0.0" 2627 | once "^1.3.0" 2628 | read-package-json "^2.0.0" 2629 | readdir-scoped-modules "^1.0.0" 2630 | 2631 | read@1, read@~1.0.1, read@~1.0.7: 2632 | version "1.0.7" 2633 | resolved "http://registry.npm.qima-inc.com/read/download/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" 2634 | dependencies: 2635 | mute-stream "~0.0.4" 2636 | 2637 | "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2: 2638 | version "2.3.3" 2639 | resolved "http://registry.npm.qima-inc.com/readable-stream/download/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2640 | dependencies: 2641 | core-util-is "~1.0.0" 2642 | inherits "~2.0.3" 2643 | isarray "~1.0.0" 2644 | process-nextick-args "~1.0.6" 2645 | safe-buffer "~5.1.1" 2646 | string_decoder "~1.0.3" 2647 | util-deprecate "~1.0.1" 2648 | 2649 | "readable-stream@>=1.0.33-1 <1.1.0-0": 2650 | version "1.0.34" 2651 | resolved "http://registry.npm.qima-inc.com/readable-stream/download/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 2652 | dependencies: 2653 | core-util-is "~1.0.0" 2654 | inherits "~2.0.1" 2655 | isarray "0.0.1" 2656 | string_decoder "~0.10.x" 2657 | 2658 | readable-stream@~1.1.10: 2659 | version "1.1.14" 2660 | resolved "http://registry.npm.qima-inc.com/readable-stream/download/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 2661 | dependencies: 2662 | core-util-is "~1.0.0" 2663 | inherits "~2.0.1" 2664 | isarray "0.0.1" 2665 | string_decoder "~0.10.x" 2666 | 2667 | readable-stream@~2.2.9: 2668 | version "2.2.11" 2669 | resolved "http://registry.npm.qima-inc.com/readable-stream/download/readable-stream-2.2.11.tgz#0796b31f8d7688007ff0b93a8088d34aa17c0f72" 2670 | dependencies: 2671 | core-util-is "~1.0.0" 2672 | inherits "~2.0.1" 2673 | isarray "~1.0.0" 2674 | process-nextick-args "~1.0.6" 2675 | safe-buffer "~5.0.1" 2676 | string_decoder "~1.0.0" 2677 | util-deprecate "~1.0.1" 2678 | 2679 | readdir-scoped-modules@*, readdir-scoped-modules@^1.0.0: 2680 | version "1.0.2" 2681 | resolved "http://registry.npm.qima-inc.com/readdir-scoped-modules/download/readdir-scoped-modules-1.0.2.tgz#9fafa37d286be5d92cbaebdee030dc9b5f406747" 2682 | dependencies: 2683 | debuglog "^1.0.1" 2684 | dezalgo "^1.0.0" 2685 | graceful-fs "^4.1.2" 2686 | once "^1.3.0" 2687 | 2688 | readdirp@^2.0.0: 2689 | version "2.1.0" 2690 | resolved "http://registry.npm.qima-inc.com/readdirp/download/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2691 | dependencies: 2692 | graceful-fs "^4.1.2" 2693 | minimatch "^3.0.2" 2694 | readable-stream "^2.0.2" 2695 | set-immediate-shim "^1.0.1" 2696 | 2697 | realize-package-specifier@~3.0.3: 2698 | version "3.0.3" 2699 | resolved "http://registry.npm.qima-inc.com/realize-package-specifier/download/realize-package-specifier-3.0.3.tgz#d0def882952b8de3f67eba5e91199661271f41f4" 2700 | dependencies: 2701 | dezalgo "^1.0.1" 2702 | npm-package-arg "^4.1.1" 2703 | 2704 | rechoir@^0.6.2: 2705 | version "0.6.2" 2706 | resolved "http://registry.npm.qima-inc.com/rechoir/download/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2707 | dependencies: 2708 | resolve "^1.1.6" 2709 | 2710 | regenerator-runtime@^0.10.0: 2711 | version "0.10.5" 2712 | resolved "http://registry.npm.qima-inc.com/regenerator-runtime/download/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2713 | 2714 | regex-cache@^0.4.2: 2715 | version "0.4.3" 2716 | resolved "http://registry.npm.qima-inc.com/regex-cache/download/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2717 | dependencies: 2718 | is-equal-shallow "^0.1.3" 2719 | is-primitive "^2.0.0" 2720 | 2721 | registry-auth-token@^3.0.1: 2722 | version "3.3.1" 2723 | resolved "http://registry.npm.qima-inc.com/registry-auth-token/download/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" 2724 | dependencies: 2725 | rc "^1.1.6" 2726 | safe-buffer "^5.0.1" 2727 | 2728 | registry-url@^3.0.0, registry-url@^3.0.3: 2729 | version "3.1.0" 2730 | resolved "http://registry.npm.qima-inc.com/registry-url/download/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2731 | dependencies: 2732 | rc "^1.0.1" 2733 | 2734 | relateurl@0.2.x: 2735 | version "0.2.7" 2736 | resolved "http://registry.npm.qima-inc.com/relateurl/download/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" 2737 | 2738 | remove-trailing-separator@^1.0.1: 2739 | version "1.0.2" 2740 | resolved "http://registry.npm.qima-inc.com/remove-trailing-separator/download/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511" 2741 | 2742 | repeat-element@^1.1.2: 2743 | version "1.1.2" 2744 | resolved "http://registry.npm.qima-inc.com/repeat-element/download/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2745 | 2746 | repeat-string@^1.5.2: 2747 | version "1.6.1" 2748 | resolved "http://registry.npm.qima-inc.com/repeat-string/download/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2749 | 2750 | repeating@^1.1.2: 2751 | version "1.1.3" 2752 | resolved "http://registry.npm.qima-inc.com/repeating/download/repeating-1.1.3.tgz#3d4114218877537494f97f77f9785fab810fa4ac" 2753 | dependencies: 2754 | is-finite "^1.0.0" 2755 | 2756 | repeating@^2.0.0: 2757 | version "2.0.1" 2758 | resolved "http://registry.npm.qima-inc.com/repeating/download/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2759 | dependencies: 2760 | is-finite "^1.0.0" 2761 | 2762 | replace-ext@0.0.1: 2763 | version "0.0.1" 2764 | resolved "http://registry.npm.qima-inc.com/replace-ext/download/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" 2765 | 2766 | request@2, request@^2.74.0, request@^2.81.0, request@~2.81.0: 2767 | version "2.81.0" 2768 | resolved "http://registry.npm.qima-inc.com/request/download/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2769 | dependencies: 2770 | aws-sign2 "~0.6.0" 2771 | aws4 "^1.2.1" 2772 | caseless "~0.12.0" 2773 | combined-stream "~1.0.5" 2774 | extend "~3.0.0" 2775 | forever-agent "~0.6.1" 2776 | form-data "~2.1.1" 2777 | har-validator "~4.2.1" 2778 | hawk "~3.1.3" 2779 | http-signature "~1.1.0" 2780 | is-typedarray "~1.0.0" 2781 | isstream "~0.1.2" 2782 | json-stringify-safe "~5.0.1" 2783 | mime-types "~2.1.7" 2784 | oauth-sign "~0.8.1" 2785 | performance-now "^0.2.0" 2786 | qs "~6.4.0" 2787 | safe-buffer "^5.0.1" 2788 | stringstream "~0.0.4" 2789 | tough-cookie "~2.3.0" 2790 | tunnel-agent "^0.6.0" 2791 | uuid "^3.0.0" 2792 | 2793 | resolve@^1.1.6: 2794 | version "1.4.0" 2795 | resolved "http://registry.npm.qima-inc.com/resolve/download/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" 2796 | dependencies: 2797 | path-parse "^1.0.5" 2798 | 2799 | restore-cursor@^2.0.0: 2800 | version "2.0.0" 2801 | resolved "http://registry.npm.qima-inc.com/restore-cursor/download/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2802 | dependencies: 2803 | onetime "^2.0.0" 2804 | signal-exit "^3.0.2" 2805 | 2806 | retry@^0.10.0, retry@~0.10.1: 2807 | version "0.10.1" 2808 | resolved "http://registry.npm.qima-inc.com/retry/download/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" 2809 | 2810 | rimraf@2, rimraf@^2.5.1, rimraf@^2.5.2, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@~2.6.1: 2811 | version "2.6.1" 2812 | resolved "http://registry.npm.qima-inc.com/rimraf/download/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2813 | dependencies: 2814 | glob "^7.0.5" 2815 | 2816 | run-async@^2.2.0: 2817 | version "2.3.0" 2818 | resolved "http://registry.npm.qima-inc.com/run-async/download/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2819 | dependencies: 2820 | is-promise "^2.1.0" 2821 | 2822 | run-queue@^1.0.0, run-queue@^1.0.3: 2823 | version "1.0.3" 2824 | resolved "http://registry.npm.qima-inc.com/run-queue/download/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" 2825 | dependencies: 2826 | aproba "^1.1.1" 2827 | 2828 | rx-lite-aggregates@^4.0.8: 2829 | version "4.0.8" 2830 | resolved "http://registry.npm.qima-inc.com/rx-lite-aggregates/download/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2831 | dependencies: 2832 | rx-lite "*" 2833 | 2834 | rx-lite@*, rx-lite@^4.0.8: 2835 | version "4.0.8" 2836 | resolved "http://registry.npm.qima-inc.com/rx-lite/download/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2837 | 2838 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2839 | version "5.1.1" 2840 | resolved "http://registry.npm.qima-inc.com/safe-buffer/download/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2841 | 2842 | safe-buffer@~5.0.1: 2843 | version "5.0.1" 2844 | resolved "http://registry.npm.qima-inc.com/safe-buffer/download/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 2845 | 2846 | seek-bzip@^1.0.5: 2847 | version "1.0.5" 2848 | resolved "http://registry.npm.qima-inc.com/seek-bzip/download/seek-bzip-1.0.5.tgz#cfe917cb3d274bcffac792758af53173eb1fabdc" 2849 | dependencies: 2850 | commander "~2.8.1" 2851 | 2852 | semver-diff@^2.0.0: 2853 | version "2.1.0" 2854 | resolved "http://registry.npm.qima-inc.com/semver-diff/download/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 2855 | dependencies: 2856 | semver "^5.0.3" 2857 | 2858 | "semver@2 >=2.2.1 || 3.x || 4 || 5", "semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", "semver@^2.3.0 || 3.x || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: 2859 | version "5.4.1" 2860 | resolved "http://registry.npm.qima-inc.com/semver/download/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2861 | 2862 | semver@~5.3.0: 2863 | version "5.3.0" 2864 | resolved "http://registry.npm.qima-inc.com/semver/download/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2865 | 2866 | set-blocking@~2.0.0: 2867 | version "2.0.0" 2868 | resolved "http://registry.npm.qima-inc.com/set-blocking/download/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2869 | 2870 | set-immediate-shim@^1.0.1: 2871 | version "1.0.1" 2872 | resolved "http://registry.npm.qima-inc.com/set-immediate-shim/download/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2873 | 2874 | sha@~2.0.1: 2875 | version "2.0.1" 2876 | resolved "http://registry.npm.qima-inc.com/sha/download/sha-2.0.1.tgz#6030822fbd2c9823949f8f72ed6411ee5cf25aae" 2877 | dependencies: 2878 | graceful-fs "^4.1.2" 2879 | readable-stream "^2.0.2" 2880 | 2881 | shebang-command@^1.2.0: 2882 | version "1.2.0" 2883 | resolved "http://registry.npm.qima-inc.com/shebang-command/download/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2884 | dependencies: 2885 | shebang-regex "^1.0.0" 2886 | 2887 | shebang-regex@^1.0.0: 2888 | version "1.0.0" 2889 | resolved "http://registry.npm.qima-inc.com/shebang-regex/download/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2890 | 2891 | shelljs@0.7.8: 2892 | version "0.7.8" 2893 | resolved "http://registry.npm.qima-inc.com/shelljs/download/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3" 2894 | dependencies: 2895 | glob "^7.0.0" 2896 | interpret "^1.0.0" 2897 | rechoir "^0.6.2" 2898 | 2899 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2900 | version "3.0.2" 2901 | resolved "http://registry.npm.qima-inc.com/signal-exit/download/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2902 | 2903 | slash@^1.0.0: 2904 | version "1.0.0" 2905 | resolved "http://registry.npm.qima-inc.com/slash/download/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2906 | 2907 | slide@^1.1.3, slide@^1.1.5, slide@~1.1.3, slide@~1.1.6: 2908 | version "1.1.6" 2909 | resolved "http://registry.npm.qima-inc.com/slide/download/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 2910 | 2911 | sntp@1.x.x: 2912 | version "1.0.9" 2913 | resolved "http://registry.npm.qima-inc.com/sntp/download/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2914 | dependencies: 2915 | hoek "2.x.x" 2916 | 2917 | sort-keys-length@^1.0.0: 2918 | version "1.0.1" 2919 | resolved "http://registry.npm.qima-inc.com/sort-keys-length/download/sort-keys-length-1.0.1.tgz#9cb6f4f4e9e48155a6aa0671edd336ff1479a188" 2920 | dependencies: 2921 | sort-keys "^1.0.0" 2922 | 2923 | sort-keys@^1.0.0: 2924 | version "1.1.2" 2925 | resolved "http://registry.npm.qima-inc.com/sort-keys/download/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 2926 | dependencies: 2927 | is-plain-obj "^1.0.0" 2928 | 2929 | sorted-object@~2.0.1: 2930 | version "2.0.1" 2931 | resolved "http://registry.npm.qima-inc.com/sorted-object/download/sorted-object-2.0.1.tgz#7d631f4bd3a798a24af1dffcfbfe83337a5df5fc" 2932 | 2933 | sorted-union-stream@~2.1.3: 2934 | version "2.1.3" 2935 | resolved "http://registry.npm.qima-inc.com/sorted-union-stream/download/sorted-union-stream-2.1.3.tgz#c7794c7e077880052ff71a8d4a2dbb4a9a638ac7" 2936 | dependencies: 2937 | from2 "^1.3.0" 2938 | stream-iterate "^1.1.0" 2939 | 2940 | source-map-support@^0.4.2: 2941 | version "0.4.15" 2942 | resolved "http://registry.npm.qima-inc.com/source-map-support/download/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 2943 | dependencies: 2944 | source-map "^0.5.6" 2945 | 2946 | source-map@0.5.x, source-map@^0.5.0, source-map@^0.5.6, source-map@~0.5.1: 2947 | version "0.5.6" 2948 | resolved "http://registry.npm.qima-inc.com/source-map/download/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2949 | 2950 | spdx-correct@~1.0.0: 2951 | version "1.0.2" 2952 | resolved "http://registry.npm.qima-inc.com/spdx-correct/download/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2953 | dependencies: 2954 | spdx-license-ids "^1.0.2" 2955 | 2956 | spdx-expression-parse@~1.0.0: 2957 | version "1.0.4" 2958 | resolved "http://registry.npm.qima-inc.com/spdx-expression-parse/download/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2959 | 2960 | spdx-license-ids@^1.0.2: 2961 | version "1.2.2" 2962 | resolved "http://registry.npm.qima-inc.com/spdx-license-ids/download/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2963 | 2964 | split@0.3: 2965 | version "0.3.3" 2966 | resolved "http://registry.npm.qima-inc.com/split/download/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 2967 | dependencies: 2968 | through "2" 2969 | 2970 | sshpk@^1.7.0: 2971 | version "1.13.1" 2972 | resolved "http://registry.npm.qima-inc.com/sshpk/download/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2973 | dependencies: 2974 | asn1 "~0.2.3" 2975 | assert-plus "^1.0.0" 2976 | dashdash "^1.12.0" 2977 | getpass "^0.1.1" 2978 | optionalDependencies: 2979 | bcrypt-pbkdf "^1.0.0" 2980 | ecc-jsbn "~0.1.1" 2981 | jsbn "~0.1.0" 2982 | tweetnacl "~0.14.0" 2983 | 2984 | stream-combiner@~0.0.4: 2985 | version "0.0.4" 2986 | resolved "http://registry.npm.qima-inc.com/stream-combiner/download/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 2987 | dependencies: 2988 | duplexer "~0.1.1" 2989 | 2990 | stream-each@^1.1.0: 2991 | version "1.2.0" 2992 | resolved "http://registry.npm.qima-inc.com/stream-each/download/stream-each-1.2.0.tgz#1e95d47573f580d814dc0ff8cd0f66f1ce53c991" 2993 | dependencies: 2994 | end-of-stream "^1.1.0" 2995 | stream-shift "^1.0.0" 2996 | 2997 | stream-iterate@^1.1.0: 2998 | version "1.2.0" 2999 | resolved "http://registry.npm.qima-inc.com/stream-iterate/download/stream-iterate-1.2.0.tgz#2bd7c77296c1702a46488b8ad41f79865eecd4e1" 3000 | dependencies: 3001 | readable-stream "^2.1.5" 3002 | stream-shift "^1.0.0" 3003 | 3004 | stream-shift@^1.0.0: 3005 | version "1.0.0" 3006 | resolved "http://registry.npm.qima-inc.com/stream-shift/download/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 3007 | 3008 | string-length@^1.0.0: 3009 | version "1.0.1" 3010 | resolved "http://registry.npm.qima-inc.com/string-length/download/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 3011 | dependencies: 3012 | strip-ansi "^3.0.0" 3013 | 3014 | string-width@^1.0.1, string-width@^1.0.2: 3015 | version "1.0.2" 3016 | resolved "http://registry.npm.qima-inc.com/string-width/download/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3017 | dependencies: 3018 | code-point-at "^1.0.0" 3019 | is-fullwidth-code-point "^1.0.0" 3020 | strip-ansi "^3.0.0" 3021 | 3022 | string-width@^2.0.0, string-width@^2.1.0: 3023 | version "2.1.1" 3024 | resolved "http://registry.npm.qima-inc.com/string-width/download/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3025 | dependencies: 3026 | is-fullwidth-code-point "^2.0.0" 3027 | strip-ansi "^4.0.0" 3028 | 3029 | string_decoder@~0.10.x: 3030 | version "0.10.31" 3031 | resolved "http://registry.npm.qima-inc.com/string_decoder/download/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3032 | 3033 | string_decoder@~1.0.0, string_decoder@~1.0.3: 3034 | version "1.0.3" 3035 | resolved "http://registry.npm.qima-inc.com/string_decoder/download/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3036 | dependencies: 3037 | safe-buffer "~5.1.0" 3038 | 3039 | stringstream@~0.0.4: 3040 | version "0.0.5" 3041 | resolved "http://registry.npm.qima-inc.com/stringstream/download/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3042 | 3043 | strip-ansi@^3.0.0, strip-ansi@^3.0.1, strip-ansi@~3.0.1: 3044 | version "3.0.1" 3045 | resolved "http://registry.npm.qima-inc.com/strip-ansi/download/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3046 | dependencies: 3047 | ansi-regex "^2.0.0" 3048 | 3049 | strip-ansi@^4.0.0: 3050 | version "4.0.0" 3051 | resolved "http://registry.npm.qima-inc.com/strip-ansi/download/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3052 | dependencies: 3053 | ansi-regex "^3.0.0" 3054 | 3055 | strip-bom-stream@^1.0.0: 3056 | version "1.0.0" 3057 | resolved "http://registry.npm.qima-inc.com/strip-bom-stream/download/strip-bom-stream-1.0.0.tgz#e7144398577d51a6bed0fa1994fa05f43fd988ee" 3058 | dependencies: 3059 | first-chunk-stream "^1.0.0" 3060 | strip-bom "^2.0.0" 3061 | 3062 | strip-bom@^2.0.0: 3063 | version "2.0.0" 3064 | resolved "http://registry.npm.qima-inc.com/strip-bom/download/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3065 | dependencies: 3066 | is-utf8 "^0.2.0" 3067 | 3068 | strip-dirs@^2.0.0: 3069 | version "2.0.0" 3070 | resolved "http://registry.npm.qima-inc.com/strip-dirs/download/strip-dirs-2.0.0.tgz#610cdb2928200da0004f41dcb90fc95cd919a0b6" 3071 | dependencies: 3072 | is-natural-number "^4.0.1" 3073 | 3074 | strip-eof@^1.0.0: 3075 | version "1.0.0" 3076 | resolved "http://registry.npm.qima-inc.com/strip-eof/download/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3077 | 3078 | strip-json-comments@~2.0.1: 3079 | version "2.0.1" 3080 | resolved "http://registry.npm.qima-inc.com/strip-json-comments/download/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3081 | 3082 | strip-outer@^1.0.0: 3083 | version "1.0.0" 3084 | resolved "http://registry.npm.qima-inc.com/strip-outer/download/strip-outer-1.0.0.tgz#aac0ba60d2e90c5d4f275fd8869fd9a2d310ffb8" 3085 | dependencies: 3086 | escape-string-regexp "^1.0.2" 3087 | 3088 | supports-color@^2.0.0: 3089 | version "2.0.0" 3090 | resolved "http://registry.npm.qima-inc.com/supports-color/download/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3091 | 3092 | supports-color@^4.0.0: 3093 | version "4.2.1" 3094 | resolved "http://registry.npm.qima-inc.com/supports-color/download/supports-color-4.2.1.tgz#65a4bb2631e90e02420dba5554c375a4754bb836" 3095 | dependencies: 3096 | has-flag "^2.0.0" 3097 | 3098 | tar-pack@^3.4.0: 3099 | version "3.4.0" 3100 | resolved "http://registry.npm.qima-inc.com/tar-pack/download/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3101 | dependencies: 3102 | debug "^2.2.0" 3103 | fstream "^1.0.10" 3104 | fstream-ignore "^1.0.5" 3105 | once "^1.3.3" 3106 | readable-stream "^2.1.4" 3107 | rimraf "^2.5.1" 3108 | tar "^2.2.1" 3109 | uid-number "^0.0.6" 3110 | 3111 | tar-stream@^1.5.2: 3112 | version "1.5.4" 3113 | resolved "http://registry.npm.qima-inc.com/tar-stream/download/tar-stream-1.5.4.tgz#36549cf04ed1aee9b2a30c0143252238daf94016" 3114 | dependencies: 3115 | bl "^1.0.0" 3116 | end-of-stream "^1.0.0" 3117 | readable-stream "^2.0.0" 3118 | xtend "^4.0.0" 3119 | 3120 | tar@^2.0.0, tar@^2.2.1, tar@~2.2.1: 3121 | version "2.2.1" 3122 | resolved "http://registry.npm.qima-inc.com/tar/download/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3123 | dependencies: 3124 | block-stream "*" 3125 | fstream "^1.0.2" 3126 | inherits "2" 3127 | 3128 | term-size@^1.2.0: 3129 | version "1.2.0" 3130 | resolved "http://registry.npm.qima-inc.com/term-size/download/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 3131 | dependencies: 3132 | execa "^0.7.0" 3133 | 3134 | text-table@~0.2.0: 3135 | version "0.2.0" 3136 | resolved "http://registry.npm.qima-inc.com/text-table/download/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3137 | 3138 | through2-filter@^2.0.0: 3139 | version "2.0.0" 3140 | resolved "http://registry.npm.qima-inc.com/through2-filter/download/through2-filter-2.0.0.tgz#60bc55a0dacb76085db1f9dae99ab43f83d622ec" 3141 | dependencies: 3142 | through2 "~2.0.0" 3143 | xtend "~4.0.0" 3144 | 3145 | through2@^0.6.0: 3146 | version "0.6.5" 3147 | resolved "http://registry.npm.qima-inc.com/through2/download/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" 3148 | dependencies: 3149 | readable-stream ">=1.0.33-1 <1.1.0-0" 3150 | xtend ">=4.0.0 <4.1.0-0" 3151 | 3152 | through2@^2.0.0, through2@~2.0.0: 3153 | version "2.0.3" 3154 | resolved "http://registry.npm.qima-inc.com/through2/download/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3155 | dependencies: 3156 | readable-stream "^2.1.5" 3157 | xtend "~4.0.1" 3158 | 3159 | through@2, "through@>=2.2.7 <3", through@^2.3.6, through@~2.3, through@~2.3.1: 3160 | version "2.3.8" 3161 | resolved "http://registry.npm.qima-inc.com/through/download/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3162 | 3163 | timed-out@^2.0.0: 3164 | version "2.0.0" 3165 | resolved "http://registry.npm.qima-inc.com/timed-out/download/timed-out-2.0.0.tgz#f38b0ae81d3747d628001f41dafc652ace671c0a" 3166 | 3167 | timed-out@^4.0.0: 3168 | version "4.0.1" 3169 | resolved "http://registry.npm.qima-inc.com/timed-out/download/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 3170 | 3171 | timers-ext@0.1, timers-ext@^0.1.2: 3172 | version "0.1.2" 3173 | resolved "http://registry.npm.qima-inc.com/timers-ext/download/timers-ext-0.1.2.tgz#61cc47a76c1abd3195f14527f978d58ae94c5204" 3174 | dependencies: 3175 | es5-ext "~0.10.14" 3176 | next-tick "1" 3177 | 3178 | tmp@^0.0.31: 3179 | version "0.0.31" 3180 | resolved "http://registry.npm.qima-inc.com/tmp/download/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 3181 | dependencies: 3182 | os-tmpdir "~1.0.1" 3183 | 3184 | to-absolute-glob@^0.1.1: 3185 | version "0.1.1" 3186 | resolved "http://registry.npm.qima-inc.com/to-absolute-glob/download/to-absolute-glob-0.1.1.tgz#1cdfa472a9ef50c239ee66999b662ca0eb39937f" 3187 | dependencies: 3188 | extend-shallow "^2.0.1" 3189 | 3190 | to-fast-properties@^1.0.1: 3191 | version "1.0.3" 3192 | resolved "http://registry.npm.qima-inc.com/to-fast-properties/download/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3193 | 3194 | touch@1.0.0: 3195 | version "1.0.0" 3196 | resolved "http://registry.npm.qima-inc.com/touch/download/touch-1.0.0.tgz#449cbe2dbae5a8c8038e30d71fa0ff464947c4de" 3197 | dependencies: 3198 | nopt "~1.0.10" 3199 | 3200 | tough-cookie@~2.3.0: 3201 | version "2.3.2" 3202 | resolved "http://registry.npm.qima-inc.com/tough-cookie/download/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3203 | dependencies: 3204 | punycode "^1.4.1" 3205 | 3206 | trim-repeated@^1.0.0: 3207 | version "1.0.0" 3208 | resolved "http://registry.npm.qima-inc.com/trim-repeated/download/trim-repeated-1.0.0.tgz#e3646a2ea4e891312bf7eace6cfb05380bc01c21" 3209 | dependencies: 3210 | escape-string-regexp "^1.0.2" 3211 | 3212 | trim-right@^1.0.1: 3213 | version "1.0.1" 3214 | resolved "http://registry.npm.qima-inc.com/trim-right/download/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3215 | 3216 | tunnel-agent@^0.6.0: 3217 | version "0.6.0" 3218 | resolved "http://registry.npm.qima-inc.com/tunnel-agent/download/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3219 | dependencies: 3220 | safe-buffer "^5.0.1" 3221 | 3222 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3223 | version "0.14.5" 3224 | resolved "http://registry.npm.qima-inc.com/tweetnacl/download/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3225 | 3226 | typedarray@^0.0.6: 3227 | version "0.0.6" 3228 | resolved "http://registry.npm.qima-inc.com/typedarray/download/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3229 | 3230 | uglify-js@3.0.x: 3231 | version "3.0.27" 3232 | resolved "http://registry.npm.qima-inc.com/uglify-js/download/uglify-js-3.0.27.tgz#a97db8c8ba6b9dba4e2f88d86aa9548fa6320034" 3233 | dependencies: 3234 | commander "~2.11.0" 3235 | source-map "~0.5.1" 3236 | 3237 | uid-number@0.0.6, uid-number@^0.0.6: 3238 | version "0.0.6" 3239 | resolved "http://registry.npm.qima-inc.com/uid-number/download/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3240 | 3241 | umask@~1.1.0: 3242 | version "1.1.0" 3243 | resolved "http://registry.npm.qima-inc.com/umask/download/umask-1.1.0.tgz#f29cebf01df517912bb58ff9c4e50fde8e33320d" 3244 | 3245 | unbzip2-stream@^1.0.9: 3246 | version "1.2.5" 3247 | resolved "http://registry.npm.qima-inc.com/unbzip2-stream/download/unbzip2-stream-1.2.5.tgz#73a033a567bbbde59654b193c44d48a7e4f43c47" 3248 | dependencies: 3249 | buffer "^3.0.1" 3250 | through "^2.3.6" 3251 | 3252 | undefsafe@0.0.3: 3253 | version "0.0.3" 3254 | resolved "http://registry.npm.qima-inc.com/undefsafe/download/undefsafe-0.0.3.tgz#ecca3a03e56b9af17385baac812ac83b994a962f" 3255 | 3256 | unique-filename@~1.1.0: 3257 | version "1.1.0" 3258 | resolved "http://registry.npm.qima-inc.com/unique-filename/download/unique-filename-1.1.0.tgz#d05f2fe4032560871f30e93cbe735eea201514f3" 3259 | dependencies: 3260 | unique-slug "^2.0.0" 3261 | 3262 | unique-slug@^2.0.0: 3263 | version "2.0.0" 3264 | resolved "http://registry.npm.qima-inc.com/unique-slug/download/unique-slug-2.0.0.tgz#db6676e7c7cc0629878ff196097c78855ae9f4ab" 3265 | dependencies: 3266 | imurmurhash "^0.1.4" 3267 | 3268 | unique-stream@^2.0.2: 3269 | version "2.2.1" 3270 | resolved "http://registry.npm.qima-inc.com/unique-stream/download/unique-stream-2.2.1.tgz#5aa003cfbe94c5ff866c4e7d668bb1c4dbadb369" 3271 | dependencies: 3272 | json-stable-stringify "^1.0.0" 3273 | through2-filter "^2.0.0" 3274 | 3275 | unique-string@^1.0.0: 3276 | version "1.0.0" 3277 | resolved "http://registry.npm.qima-inc.com/unique-string/download/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 3278 | dependencies: 3279 | crypto-random-string "^1.0.0" 3280 | 3281 | universalify@^0.1.0: 3282 | version "0.1.1" 3283 | resolved "http://registry.npm.qima-inc.com/universalify/download/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" 3284 | 3285 | unpipe@~1.0.0: 3286 | version "1.0.0" 3287 | resolved "http://registry.npm.qima-inc.com/unpipe/download/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3288 | 3289 | unzip-response@^2.0.1: 3290 | version "2.0.1" 3291 | resolved "http://registry.npm.qima-inc.com/unzip-response/download/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 3292 | 3293 | update-notifier@0.5.0: 3294 | version "0.5.0" 3295 | resolved "http://registry.npm.qima-inc.com/update-notifier/download/update-notifier-0.5.0.tgz#07b5dc2066b3627ab3b4f530130f7eddda07a4cc" 3296 | dependencies: 3297 | chalk "^1.0.0" 3298 | configstore "^1.0.0" 3299 | is-npm "^1.0.0" 3300 | latest-version "^1.0.0" 3301 | repeating "^1.1.2" 3302 | semver-diff "^2.0.0" 3303 | string-length "^1.0.0" 3304 | 3305 | update-notifier@~2.1.0: 3306 | version "2.1.0" 3307 | resolved "http://registry.npm.qima-inc.com/update-notifier/download/update-notifier-2.1.0.tgz#ec0c1e53536b76647a24b77cb83966d9315123d9" 3308 | dependencies: 3309 | boxen "^1.0.0" 3310 | chalk "^1.0.0" 3311 | configstore "^3.0.0" 3312 | is-npm "^1.0.0" 3313 | latest-version "^3.0.0" 3314 | lazy-req "^2.0.0" 3315 | semver-diff "^2.0.0" 3316 | xdg-basedir "^3.0.0" 3317 | 3318 | upper-case@^1.1.1: 3319 | version "1.1.3" 3320 | resolved "http://registry.npm.qima-inc.com/upper-case/download/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" 3321 | 3322 | url-parse-lax@^1.0.0: 3323 | version "1.0.0" 3324 | resolved "http://registry.npm.qima-inc.com/url-parse-lax/download/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 3325 | dependencies: 3326 | prepend-http "^1.0.1" 3327 | 3328 | url-to-options@^1.0.1: 3329 | version "1.0.1" 3330 | resolved "http://registry.npm.qima-inc.com/url-to-options/download/url-to-options-1.0.1.tgz#1505a03a289a48cbd7a434efbaeec5055f5633a9" 3331 | 3332 | user-home@^1.1.1: 3333 | version "1.1.1" 3334 | resolved "http://registry.npm.qima-inc.com/user-home/download/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3335 | 3336 | util-deprecate@~1.0.1: 3337 | version "1.0.2" 3338 | resolved "http://registry.npm.qima-inc.com/util-deprecate/download/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3339 | 3340 | util-extend@^1.0.1: 3341 | version "1.0.3" 3342 | resolved "http://registry.npm.qima-inc.com/util-extend/download/util-extend-1.0.3.tgz#a7c216d267545169637b3b6edc6ca9119e2ff93f" 3343 | 3344 | uuid@^2.0.1: 3345 | version "2.0.3" 3346 | resolved "http://registry.npm.qima-inc.com/uuid/download/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 3347 | 3348 | uuid@^3.0.0: 3349 | version "3.1.0" 3350 | resolved "http://registry.npm.qima-inc.com/uuid/download/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 3351 | 3352 | uuid@~3.0.1: 3353 | version "3.0.1" 3354 | resolved "http://registry.npm.qima-inc.com/uuid/download/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3355 | 3356 | v8flags@^2.0.10: 3357 | version "2.1.1" 3358 | resolved "http://registry.npm.qima-inc.com/v8flags/download/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3359 | dependencies: 3360 | user-home "^1.1.1" 3361 | 3362 | vali-date@^1.0.0: 3363 | version "1.0.0" 3364 | resolved "http://registry.npm.qima-inc.com/vali-date/download/vali-date-1.0.0.tgz#1b904a59609fb328ef078138420934f6b86709a6" 3365 | 3366 | validate-npm-package-license@*, validate-npm-package-license@^3.0.1: 3367 | version "3.0.1" 3368 | resolved "http://registry.npm.qima-inc.com/validate-npm-package-license/download/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3369 | dependencies: 3370 | spdx-correct "~1.0.0" 3371 | spdx-expression-parse "~1.0.0" 3372 | 3373 | validate-npm-package-name@^3.0.0, validate-npm-package-name@~3.0.0: 3374 | version "3.0.0" 3375 | resolved "http://registry.npm.qima-inc.com/validate-npm-package-name/download/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" 3376 | dependencies: 3377 | builtins "^1.0.3" 3378 | 3379 | verror@1.3.6: 3380 | version "1.3.6" 3381 | resolved "http://registry.npm.qima-inc.com/verror/download/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3382 | dependencies: 3383 | extsprintf "1.0.2" 3384 | 3385 | vinyl-fs@2.4.4: 3386 | version "2.4.4" 3387 | resolved "http://registry.npm.qima-inc.com/vinyl-fs/download/vinyl-fs-2.4.4.tgz#be6ff3270cb55dfd7d3063640de81f25d7532239" 3388 | dependencies: 3389 | duplexify "^3.2.0" 3390 | glob-stream "^5.3.2" 3391 | graceful-fs "^4.0.0" 3392 | gulp-sourcemaps "1.6.0" 3393 | is-valid-glob "^0.3.0" 3394 | lazystream "^1.0.0" 3395 | lodash.isequal "^4.0.0" 3396 | merge-stream "^1.0.0" 3397 | mkdirp "^0.5.0" 3398 | object-assign "^4.0.0" 3399 | readable-stream "^2.0.4" 3400 | strip-bom "^2.0.0" 3401 | strip-bom-stream "^1.0.0" 3402 | through2 "^2.0.0" 3403 | through2-filter "^2.0.0" 3404 | vali-date "^1.0.0" 3405 | vinyl "^1.0.0" 3406 | 3407 | vinyl@^1.0.0: 3408 | version "1.2.0" 3409 | resolved "http://registry.npm.qima-inc.com/vinyl/download/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884" 3410 | dependencies: 3411 | clone "^1.0.0" 3412 | clone-stats "^0.0.1" 3413 | replace-ext "0.0.1" 3414 | 3415 | wcwidth@^1.0.0: 3416 | version "1.0.1" 3417 | resolved "http://registry.npm.qima-inc.com/wcwidth/download/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" 3418 | dependencies: 3419 | defaults "^1.0.3" 3420 | 3421 | which@1, which@^1.2.9: 3422 | version "1.3.0" 3423 | resolved "http://registry.npm.qima-inc.com/which/download/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3424 | dependencies: 3425 | isexe "^2.0.0" 3426 | 3427 | which@~1.2.14: 3428 | version "1.2.14" 3429 | resolved "http://registry.npm.qima-inc.com/which/download/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3430 | dependencies: 3431 | isexe "^2.0.0" 3432 | 3433 | wide-align@^1.1.0: 3434 | version "1.1.2" 3435 | resolved "http://registry.npm.qima-inc.com/wide-align/download/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3436 | dependencies: 3437 | string-width "^1.0.2" 3438 | 3439 | widest-line@^1.0.0: 3440 | version "1.0.0" 3441 | resolved "http://registry.npm.qima-inc.com/widest-line/download/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 3442 | dependencies: 3443 | string-width "^1.0.1" 3444 | 3445 | wrappy@1, wrappy@~1.0.2: 3446 | version "1.0.2" 3447 | resolved "http://registry.npm.qima-inc.com/wrappy/download/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3448 | 3449 | write-file-atomic@^1.1.2, write-file-atomic@~1.3.3: 3450 | version "1.3.4" 3451 | resolved "http://registry.npm.qima-inc.com/write-file-atomic/download/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 3452 | dependencies: 3453 | graceful-fs "^4.1.11" 3454 | imurmurhash "^0.1.4" 3455 | slide "^1.1.5" 3456 | 3457 | write-file-atomic@^2.0.0: 3458 | version "2.3.0" 3459 | resolved "http://registry.npm.qima-inc.com/write-file-atomic/download/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3460 | dependencies: 3461 | graceful-fs "^4.1.11" 3462 | imurmurhash "^0.1.4" 3463 | signal-exit "^3.0.2" 3464 | 3465 | xdg-basedir@^2.0.0: 3466 | version "2.0.0" 3467 | resolved "http://registry.npm.qima-inc.com/xdg-basedir/download/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 3468 | dependencies: 3469 | os-homedir "^1.0.0" 3470 | 3471 | xdg-basedir@^3.0.0: 3472 | version "3.0.0" 3473 | resolved "http://registry.npm.qima-inc.com/xdg-basedir/download/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 3474 | 3475 | xml-char-classes@^1.0.0: 3476 | version "1.0.0" 3477 | resolved "http://registry.npm.qima-inc.com/xml-char-classes/download/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d" 3478 | 3479 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@~4.0.0, xtend@~4.0.1: 3480 | version "4.0.1" 3481 | resolved "http://registry.npm.qima-inc.com/xtend/download/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3482 | 3483 | yallist@^2.1.2: 3484 | version "2.1.2" 3485 | resolved "http://registry.npm.qima-inc.com/yallist/download/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3486 | 3487 | yauzl@^2.4.2: 3488 | version "2.8.0" 3489 | resolved "http://registry.npm.qima-inc.com/yauzl/download/yauzl-2.8.0.tgz#79450aff22b2a9c5a41ef54e02db907ccfbf9ee2" 3490 | dependencies: 3491 | buffer-crc32 "~0.2.3" 3492 | fd-slicer "~1.0.1" 3493 | --------------------------------------------------------------------------------